summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-12-31 15:16:02 +0100
committerPacho Ramos <pacho@gentoo.org>2016-12-31 15:16:13 +0100
commit7a16304f48603371a9de922a42741420a7329fc9 (patch)
tree19c347d162c8419801091f9c8854195b64d428ad /dev-libs/librra/librra-0.16.ebuild
parentprofiles: Move media-libs/mlt[vdpau] package.use.mask from base to arch (diff)
downloadgentoo-7a16304f48603371a9de922a42741420a7329fc9.tar.gz
gentoo-7a16304f48603371a9de922a42741420a7329fc9.tar.bz2
gentoo-7a16304f48603371a9de922a42741420a7329fc9.zip
Remove masked for removal packages
Diffstat (limited to 'dev-libs/librra/librra-0.16.ebuild')
-rw-r--r--dev-libs/librra/librra-0.16.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-libs/librra/librra-0.16.ebuild b/dev-libs/librra/librra-0.16.ebuild
deleted file mode 100644
index 9c986a079465..000000000000
--- a/dev-libs/librra/librra-0.16.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="python? 2:2.7"
-
-inherit python
-
-DESCRIPTION="Implements the RRA protocol, for syncing pre WM-2005 PIM data, and files for all versions"
-HOMEPAGE="https://sourceforge.net/projects/synce/"
-SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="python recurrence static-libs"
-
-RDEPEND=">=app-pda/synce-core-0.16[python?]
- >=dev-libs/libmimedir-0.5.1
- 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 \
- $(use_enable static-libs static) \
- $(use_enable recurrence) \
- $(use_enable python python-bindings)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- dodoc ChangeLog README TODO
- newdoc lib/README README.lib
- newdoc src/README README.src
-
- # prune_libtool_files() from eutils.eclass fails wrt #421197
- find "${ED}" -name '*.la' -exec rm -f {} +
-
- # Always remove static archive from site-packages
- use static-libs && find "${ED}" -name pyrra.a -exec rm -f {} +
-}