summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-06-15 09:18:49 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-06-15 09:18:49 +0000
commit650a6ba7ffc931b2079cfb1dc87074d45da8bed6 (patch)
tree1c5faa2678925f598e8bdda89caf5b0a0bb412fc /dev-libs/librra
parentMissing dev-python/python-gudev RDEPEND. Run python_convert_shebangs for dev-... (diff)
downloadgentoo-2-650a6ba7ffc931b2079cfb1dc87074d45da8bed6.tar.gz
gentoo-2-650a6ba7ffc931b2079cfb1dc87074d45da8bed6.tar.bz2
gentoo-2-650a6ba7ffc931b2079cfb1dc87074d45da8bed6.zip
old
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/librra')
-rw-r--r--dev-libs/librra/ChangeLog5
-rw-r--r--dev-libs/librra/librra-0.14.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-libs/librra/ChangeLog b/dev-libs/librra/ChangeLog
index 140ccbef6f7d..1622dd68ec17 100644
--- a/dev-libs/librra/ChangeLog
+++ b/dev-libs/librra/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/librra
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/librra/ChangeLog,v 1.3 2012/06/15 08:39:17 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/librra/ChangeLog,v 1.4 2012/06/15 09:18:49 ssuominen Exp $
+
+ 15 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> -librra-0.14.ebuild:
+ old
*librra-0.16 (15 Jun 2012)
diff --git a/dev-libs/librra/librra-0.14.ebuild b/dev-libs/librra/librra-0.14.ebuild
deleted file mode 100644
index fb0ba693ae2f..000000000000
--- a/dev-libs/librra/librra-0.14.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/librra/librra-0.14.ebuild,v 1.2 2012/05/04 18:35:56 jdhore Exp $
-
-EAPI=3
-
-PYTHON_DEPEND="python? 2:2.6"
-
-inherit python
-
-DESCRIPTION="A library for SynCE"
-HOMEPAGE="http://www.synce.org/"
-SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="python recurrence static-libs"
-
-RDEPEND="dev-libs/libmimedir
- >=dev-libs/librapi2-0.14
- >=dev-libs/libsynce-0.14
- python? ( >=dev-python/pyrex-0.9.6 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-pkg_setup() {
- if use python; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- $(use_enable static-libs static) \
- $(use_enable recurrence) \
- $(use_enable python python-bindings)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc ChangeLog README TODO
- newdoc lib/README README.lib
-
- find "${D}" -name '*.la' -exec rm -f {} +
-}