summaryrefslogtreecommitdiff
path: root/libotr-3.2.0/packaging
diff options
context:
space:
mode:
authoradmin@progandy.co.cc <admin@progandy.co.cc@eced67a3-f377-a0ae-92ae-d6de1850b05a>2010-08-19 20:12:06 +0000
committeradmin@progandy.co.cc <admin@progandy.co.cc@eced67a3-f377-a0ae-92ae-d6de1850b05a>2010-08-19 20:12:06 +0000
commit11e5e8749eb7d4d3cfebfa49bbb7ea4624608647 (patch)
treec773fee94a63a078e5cb59bdbfd3165f1830b7ea /libotr-3.2.0/packaging
parentc7e64af067562167b6941f3ad8383e3ceb817633 (diff)
initial commit with v0.8.6.1
git-svn-id: http://mirotr.googlecode.com/svn/trunk@2 eced67a3-f377-a0ae-92ae-d6de1850b05a
Diffstat (limited to 'libotr-3.2.0/packaging')
-rw-r--r--libotr-3.2.0/packaging/CVS/Entries1
-rw-r--r--libotr-3.2.0/packaging/CVS/Repository1
-rw-r--r--libotr-3.2.0/packaging/CVS/Root1
-rw-r--r--libotr-3.2.0/packaging/fedora/CVS/Entries2
-rw-r--r--libotr-3.2.0/packaging/fedora/CVS/Repository1
-rw-r--r--libotr-3.2.0/packaging/fedora/CVS/Root1
-rw-r--r--libotr-3.2.0/packaging/fedora/libotr.spec129
7 files changed, 136 insertions, 0 deletions
diff --git a/libotr-3.2.0/packaging/CVS/Entries b/libotr-3.2.0/packaging/CVS/Entries
new file mode 100644
index 0000000..6f35bfd
--- /dev/null
+++ b/libotr-3.2.0/packaging/CVS/Entries
@@ -0,0 +1 @@
+D/fedora////
diff --git a/libotr-3.2.0/packaging/CVS/Repository b/libotr-3.2.0/packaging/CVS/Repository
new file mode 100644
index 0000000..9809308
--- /dev/null
+++ b/libotr-3.2.0/packaging/CVS/Repository
@@ -0,0 +1 @@
+libotr/packaging
diff --git a/libotr-3.2.0/packaging/CVS/Root b/libotr-3.2.0/packaging/CVS/Root
new file mode 100644
index 0000000..18bdf62
--- /dev/null
+++ b/libotr-3.2.0/packaging/CVS/Root
@@ -0,0 +1 @@
+:ext:cypherpunk@otr.cvs.sourceforge.net:/cvsroot/otr
diff --git a/libotr-3.2.0/packaging/fedora/CVS/Entries b/libotr-3.2.0/packaging/fedora/CVS/Entries
new file mode 100644
index 0000000..d97bcf3
--- /dev/null
+++ b/libotr-3.2.0/packaging/fedora/CVS/Entries
@@ -0,0 +1,2 @@
+/libotr.spec/1.10/Thu Aug 2 00:16:51 2007//
+D
diff --git a/libotr-3.2.0/packaging/fedora/CVS/Repository b/libotr-3.2.0/packaging/fedora/CVS/Repository
new file mode 100644
index 0000000..5eef0e1
--- /dev/null
+++ b/libotr-3.2.0/packaging/fedora/CVS/Repository
@@ -0,0 +1 @@
+libotr/packaging/fedora
diff --git a/libotr-3.2.0/packaging/fedora/CVS/Root b/libotr-3.2.0/packaging/fedora/CVS/Root
new file mode 100644
index 0000000..18bdf62
--- /dev/null
+++ b/libotr-3.2.0/packaging/fedora/CVS/Root
@@ -0,0 +1 @@
+:ext:cypherpunk@otr.cvs.sourceforge.net:/cvsroot/otr
diff --git a/libotr-3.2.0/packaging/fedora/libotr.spec b/libotr-3.2.0/packaging/fedora/libotr.spec
new file mode 100644
index 0000000..15e135e
--- /dev/null
+++ b/libotr-3.2.0/packaging/fedora/libotr.spec
@@ -0,0 +1,129 @@
+Summary: Off-The-Record Messaging library and toolkit
+Name: libotr
+Version: 3.1.0
+Release: 1%{?dist}
+License: GPL and LGPL
+Group: System Environment/Libraries
+Source0: http://otr.cypherpunks.ca/%{name}-%{version}.tar.gz
+Url: http://otr.cypherpunks.ca/
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Provides: libotr-toolkit = %{version}
+Obsoletes: libotr-toolkit < %{version}
+Requires: libgcrypt >= 1.2.0,
+BuildRequires: libgcrypt-devel >= 1.2.0, libgpg-error-devel
+
+%description
+Off-the-Record Messaging Library and Toolkit
+This is a library and toolkit which implements Off-the-Record (OTR) Messaging.
+OTR allows you to have private conversations over IM by providing Encryption,
+Authentication, Deniability and Perfect forward secrecy.
+
+%package devel
+Summary: Development library and include files for libotr
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}, libgcrypt-devel >= 1.2.0
+
+%description devel
+
+The devel package contains the libotr library and the include files
+
+%prep
+%setup -q
+
+%build
+
+%configure --with-pic --disable-rpath
+make %{?_smp_mflags} all
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make \
+ DESTDIR=$RPM_BUILD_ROOT \
+ LIBINSTDIR=%{_libdir} \
+ install
+rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root)
+%doc AUTHORS README COPYING COPYING.LIB NEWS Protocol*
+%{_libdir}/libotr.so.*
+%{_bindir}/*
+%{_mandir}/man1/*
+
+%files devel
+%defattr(-,root,root,-)
+%doc ChangeLog
+%{_libdir}/libotr.so
+%{_libdir}/libotr.a
+%dir %{_includedir}/libotr
+%{_includedir}/libotr/*
+%{_datadir}/aclocal/*
+
+
+%changelog
+* Thu Jul 26 2007 Paul Wouters <paul@cypherpunks.ca> 3.1.0-preview2
+- Upgraded to current version
+
+* Mon Oct 17 2005 Paul Wouters <paul@cypherpunks.ca> 3.0.0-1
+- Minor change to allow for new documentation files. Fixed Requires:
+
+* Sat Jun 19 2005 Paul Wouters <paul@cypherpunks.ca>
+- Fixed defattr, groups, description and duplicate files in devel
+
+* Fri Jun 17 2005 Tom "spot" Callaway <tcallawa@redhat.com>
+- reworked for Fedora Extras
+
+* Tue May 3 2005 Ian Goldberg <ian@cypherpunks.ca>
+- Bumped version number to 2.0.2
+
+* Wed Feb 16 2005 Ian Goldberg <ian@cypherpunks.ca>
+- Bumped version number to 2.0.1
+
+* Tue Feb 8 2005 Ian Goldberg <ian@cypherpunks.ca>
+- Bumped version number to 2.0.0
+
+* Wed Feb 2 2005 Ian Goldberg <ian@cypherpunks.ca>
+- Added libotr.m4 to the devel package
+- Bumped version number to 1.99.0
+
+* Wed Jan 19 2005 Paul Wouters <paul@cypherpunks.ca>
+- Updated spec file for the gaim-otr libotr split
+
+* Tue Dec 21 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Bumped to version 1.0.2.
+
+* Fri Dec 17 2004 Paul Wouters <paul@cypherpunks.ca>
+- instll fix for x86_64
+
+* Sun Dec 12 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Bumped to version 1.0.0.
+
+* Fri Dec 10 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Bumped to version 0.9.9rc2.
+
+* Thu Dec 9 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Added CFLAGS to "make all", removed DESTDIR
+
+* Wed Dec 8 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Bumped to version 0.9.9rc1.
+
+* Fri Dec 3 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Bumped to version 0.9.1.
+
+* Wed Dec 1 2004 Paul Wouters <paul@cypherpunks.ca>
+- Bumped to version 0.9.0.
+- Fixed install for tools and cos
+- Added Obsoletes: target for otr-plugin so rpm-Uhv gaim-otr removes it.
+
+* Mon Nov 22 2004 Ian Goldberg <otr@cypherpunks.ca>
+- Bumped version to 0.8.1
+* Sun Nov 21 2004 Paul Wouters <paul@cypherpunks.ca>
+- Initial version
+