aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/libotr/libotr-3.2.0/packaging/fedora/libotr.spec
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/libotr/libotr-3.2.0/packaging/fedora/libotr.spec')
-rwxr-xr-xlinden/indra/libotr/libotr-3.2.0/packaging/fedora/libotr.spec129
1 files changed, 129 insertions, 0 deletions
diff --git a/linden/indra/libotr/libotr-3.2.0/packaging/fedora/libotr.spec b/linden/indra/libotr/libotr-3.2.0/packaging/fedora/libotr.spec
new file mode 100755
index 0000000..15e135e
--- /dev/null
+++ b/linden/indra/libotr/libotr-3.2.0/packaging/fedora/libotr.spec
@@ -0,0 +1,129 @@
1Summary: Off-The-Record Messaging library and toolkit
2Name: libotr
3Version: 3.1.0
4Release: 1%{?dist}
5License: GPL and LGPL
6Group: System Environment/Libraries
7Source0: http://otr.cypherpunks.ca/%{name}-%{version}.tar.gz
8Url: http://otr.cypherpunks.ca/
9BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
10Provides: libotr-toolkit = %{version}
11Obsoletes: libotr-toolkit < %{version}
12Requires: libgcrypt >= 1.2.0,
13BuildRequires: libgcrypt-devel >= 1.2.0, libgpg-error-devel
14
15%description
16Off-the-Record Messaging Library and Toolkit
17This is a library and toolkit which implements Off-the-Record (OTR) Messaging.
18OTR allows you to have private conversations over IM by providing Encryption,
19Authentication, Deniability and Perfect forward secrecy.
20
21%package devel
22Summary: Development library and include files for libotr
23Group: Development/Libraries
24Requires: %{name} = %{version}-%{release}, libgcrypt-devel >= 1.2.0
25
26%description devel
27
28The devel package contains the libotr library and the include files
29
30%prep
31%setup -q
32
33%build
34
35%configure --with-pic --disable-rpath
36make %{?_smp_mflags} all
37
38%install
39rm -rf $RPM_BUILD_ROOT
40make \
41 DESTDIR=$RPM_BUILD_ROOT \
42 LIBINSTDIR=%{_libdir} \
43 install
44rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
45
46%clean
47rm -rf $RPM_BUILD_ROOT
48
49%post -p /sbin/ldconfig
50
51%postun -p /sbin/ldconfig
52
53%files
54%defattr(-,root,root)
55%doc AUTHORS README COPYING COPYING.LIB NEWS Protocol*
56%{_libdir}/libotr.so.*
57%{_bindir}/*
58%{_mandir}/man1/*
59
60%files devel
61%defattr(-,root,root,-)
62%doc ChangeLog
63%{_libdir}/libotr.so
64%{_libdir}/libotr.a
65%dir %{_includedir}/libotr
66%{_includedir}/libotr/*
67%{_datadir}/aclocal/*
68
69
70%changelog
71* Thu Jul 26 2007 Paul Wouters <paul@cypherpunks.ca> 3.1.0-preview2
72- Upgraded to current version
73
74* Mon Oct 17 2005 Paul Wouters <paul@cypherpunks.ca> 3.0.0-1
75- Minor change to allow for new documentation files. Fixed Requires:
76
77* Sat Jun 19 2005 Paul Wouters <paul@cypherpunks.ca>
78- Fixed defattr, groups, description and duplicate files in devel
79
80* Fri Jun 17 2005 Tom "spot" Callaway <tcallawa@redhat.com>
81- reworked for Fedora Extras
82
83* Tue May 3 2005 Ian Goldberg <ian@cypherpunks.ca>
84- Bumped version number to 2.0.2
85
86* Wed Feb 16 2005 Ian Goldberg <ian@cypherpunks.ca>
87- Bumped version number to 2.0.1
88
89* Tue Feb 8 2005 Ian Goldberg <ian@cypherpunks.ca>
90- Bumped version number to 2.0.0
91
92* Wed Feb 2 2005 Ian Goldberg <ian@cypherpunks.ca>
93- Added libotr.m4 to the devel package
94- Bumped version number to 1.99.0
95
96* Wed Jan 19 2005 Paul Wouters <paul@cypherpunks.ca>
97- Updated spec file for the gaim-otr libotr split
98
99* Tue Dec 21 2004 Ian Goldberg <otr@cypherpunks.ca>
100- Bumped to version 1.0.2.
101
102* Fri Dec 17 2004 Paul Wouters <paul@cypherpunks.ca>
103- instll fix for x86_64
104
105* Sun Dec 12 2004 Ian Goldberg <otr@cypherpunks.ca>
106- Bumped to version 1.0.0.
107
108* Fri Dec 10 2004 Ian Goldberg <otr@cypherpunks.ca>
109- Bumped to version 0.9.9rc2.
110
111* Thu Dec 9 2004 Ian Goldberg <otr@cypherpunks.ca>
112- Added CFLAGS to "make all", removed DESTDIR
113
114* Wed Dec 8 2004 Ian Goldberg <otr@cypherpunks.ca>
115- Bumped to version 0.9.9rc1.
116
117* Fri Dec 3 2004 Ian Goldberg <otr@cypherpunks.ca>
118- Bumped to version 0.9.1.
119
120* Wed Dec 1 2004 Paul Wouters <paul@cypherpunks.ca>
121- Bumped to version 0.9.0.
122- Fixed install for tools and cos
123- Added Obsoletes: target for otr-plugin so rpm-Uhv gaim-otr removes it.
124
125* Mon Nov 22 2004 Ian Goldberg <otr@cypherpunks.ca>
126- Bumped version to 0.8.1
127* Sun Nov 21 2004 Paul Wouters <paul@cypherpunks.ca>
128- Initial version
129