summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2020-09-08 09:39:30 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2020-09-08 09:39:45 +0200
commitfc3f355b3ca7c0d4d7f87ae402b7f8a7c5c2e574 (patch)
tree8c6565d434bd305ccd0d0326b94c99bb79c8c6de /dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild
parentdev-perl/File-Which: Bump to version 1.230.0 (diff)
downloadgentoo-fc3f355b3ca7c0d4d7f87ae402b7f8a7c5c2e574.tar.gz
gentoo-fc3f355b3ca7c0d4d7f87ae402b7f8a7c5c2e574.tar.bz2
gentoo-fc3f355b3ca7c0d4d7f87ae402b7f8a7c5c2e574.zip
dev-libs/redland-bindings: removed obsolete 1.0.14.1-r2 and 1.0.17.1
Closes: https://bugs.gentoo.org/602584 Closes: https://bugs.gentoo.org/582392 Closes: https://bugs.gentoo.org/648184 Closes: https://bugs.gentoo.org/624892 Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild')
-rw-r--r--dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild
deleted file mode 100644
index c2af4022c104..000000000000
--- a/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit multilib python-single-r1
-
-DESCRIPTION="Language bindings for Redland"
-HOMEPAGE="http://librdf.org/bindings/"
-SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
-
-LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-linux"
-IUSE="lua perl python php ruby"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND=">=dev-libs/redland-1.0.14
- lua? ( >=dev-lang/lua-5.1:0 )
- perl? ( dev-lang/perl:= )
- php? ( dev-lang/php:* )
- python? ( ${PYTHON_DEPS} )
- ruby? ( dev-lang/ruby:* dev-ruby/log4r )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- >=dev-lang/swig-2
- sys-apps/sed"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
- econf \
- $(use_with lua) \
- $(use_with perl) \
- $(use_with python) \
- $(use_with php) \
- $(use_with ruby)
-}
-
-src_install() {
- emake DESTDIR="${D}" INSTALLDIRS=vendor luadir=/usr/$(get_libdir)/lua/5.1 install
-
- if use perl; then
- find "${ED}" -type f -name perllocal.pod -delete
- find "${ED}" -depth -mindepth 1 -type d -empty -delete
- fi
- use python && python_optimize
-
- dodoc AUTHORS ChangeLog NEWS README TODO
- dohtml {NEWS,README,RELEASE,TODO}.html
-}