summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Jaroszyński <peper@gentoo.org>2007-03-28 20:32:29 +0000
committerPiotr Jaroszyński <peper@gentoo.org>2007-03-28 20:32:29 +0000
commite715310f84e186918b7a87419957fca7ea11a8d0 (patch)
tree08d835bbd762145376db706360f4dd021f012f57 /app-pda
parentAdd suid for dovecot (diff)
downloadgentoo-2-e715310f84e186918b7a87419957fca7ea11a8d0.tar.gz
gentoo-2-e715310f84e186918b7a87419957fca7ea11a8d0.tar.bz2
gentoo-2-e715310f84e186918b7a87419957fca7ea11a8d0.zip
Readd old libopensync for libopensync-plugin-synce, which is btw going to be masked.
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-pda')
-rw-r--r--app-pda/libopensync/ChangeLog7
-rw-r--r--app-pda/libopensync/files/digest-libopensync-0.203
-rw-r--r--app-pda/libopensync/libopensync-0.20.ebuild49
3 files changed, 58 insertions, 1 deletions
diff --git a/app-pda/libopensync/ChangeLog b/app-pda/libopensync/ChangeLog
index 2d2c73d458e6..94892f067a18 100644
--- a/app-pda/libopensync/ChangeLog
+++ b/app-pda/libopensync/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-pda/libopensync
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/ChangeLog,v 1.6 2007/03/28 20:14:35 peper Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/ChangeLog,v 1.7 2007/03/28 20:32:29 peper Exp $
+
+ 28 Mar 2007; Piotr Jaroszyński <peper@gentoo.org>
+ +libopensync-0.20.ebuild:
+ Readd old libopensync for libopensync-plugin-synce, which is btw going to be
+ masked.
*libopensync-0.22 (28 Mar 2007)
diff --git a/app-pda/libopensync/files/digest-libopensync-0.20 b/app-pda/libopensync/files/digest-libopensync-0.20
new file mode 100644
index 000000000000..2f4b05d3c383
--- /dev/null
+++ b/app-pda/libopensync/files/digest-libopensync-0.20
@@ -0,0 +1,3 @@
+MD5 c685e69929333a763c51987b4a19d50d libopensync-0.20.tar.gz 681064
+RMD160 3cfaf0a456cd78240a4abb04e0c4c0c7ea35f878 libopensync-0.20.tar.gz 681064
+SHA256 5da9e72de291e7654fb59bf40b647633f3afb3cde924bd11b80d6ed26c911feb libopensync-0.20.tar.gz 681064
diff --git a/app-pda/libopensync/libopensync-0.20.ebuild b/app-pda/libopensync/libopensync-0.20.ebuild
new file mode 100644
index 000000000000..eb7ebbe4f555
--- /dev/null
+++ b/app-pda/libopensync/libopensync-0.20.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/libopensync-0.20.ebuild,v 1.6 2007/03/28 20:32:29 peper Exp $
+
+DESCRIPTION="OpenSync synchronisation framework library"
+HOMEPAGE="http://www.opensync.org/"
+SRC_URI="http://dev.gentooexperimental.org/~peper/distfiles/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="LGPL-2.1"
+IUSE="debug doc python"
+#test
+#profiling" - needs tau - http://www.cs.uoregon.edu/research/tau/
+
+
+RDEPEND=">=dev-db/sqlite-3
+ >=dev-libs/glib-2
+ dev-libs/libxml2
+ python? ( >=dev-lang/python-2.2
+ >=dev-lang/swig-1.3.17 )
+ debug? ( >=dev-libs/check-0.9.2 ) "
+DEPEND="${RDEPEND}
+ >=dev-util/pkgconfig-0.9.0
+ doc? ( app-doc/doxygen )"
+
+# Tests are still broken in 0.20
+RESTRICT="test"
+
+src_compile() {
+ #$(use_enable test unit-tests) \
+ econf \
+ --enable-engine \
+ --enable-tools \
+ $(use_enable python) \
+ $(use_enable debug) \
+ $(use_enable debug tracing) \
+ || die "econf failed"
+
+ emake || die "emake failed"
+
+ use doc && doxygen Doxyfile
+}
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc AUTHORS ChangeLog NEWS README TODO
+ use doc && dohtml docs/html/*
+}