diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-08-31 19:24:04 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-08-31 20:46:13 +1200 |
commit | 80799ba009131e56208c031ebfb05f9caf9d4aa7 (patch) | |
tree | 51aee8bf8908a1ad906aad200dd72396e9fbf395 /dev-perl/BerkeleyDB | |
parent | dev-perl/BSD-Resource: Cleanup old 1.291.100-r1 (diff) | |
download | gentoo-80799ba009131e56208c031ebfb05f9caf9d4aa7.tar.gz gentoo-80799ba009131e56208c031ebfb05f9caf9d4aa7.tar.bz2 gentoo-80799ba009131e56208c031ebfb05f9caf9d4aa7.zip |
dev-perl/BerkeleyDB: Remove old 0.630.0
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/BerkeleyDB')
-rw-r--r-- | dev-perl/BerkeleyDB/BerkeleyDB-0.630.0.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0.ebuild b/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0.ebuild deleted file mode 100644 index f8f34ad49708..000000000000 --- a/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=PMQS -DIST_VERSION=0.63 -inherit perl-module eutils db-use - -DESCRIPTION="This module provides Berkeley DB interface for Perl" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -# Install DB_File if you want older support. BerkleyDB no longer -# supports less than 2.0. - -RDEPEND=" - >=sys-libs/db-2.0:= <sys-libs/db-7 -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker" - -PERL_RM_FILES=( - "t/meta-json.t" - "t/meta-yaml.t" - "t/pod.t" - "scan.pl" - "mkconsts.pl" -) -# parallel really broken -DIST_TEST="do" -src_prepare() { - local DB_SUPPORTED=( - 6 5 4 3 2 - ) - # on Gentoo/FreeBSD we cannot trust on the symlink /usr/include/db.h - # as for Gentoo/Linux, so we need to esplicitely declare the exact berkdb - # include path - local dbdir="$(db_includedir "${DB_SUPPORTED[@]}" )" - local dbname="$(db_libname "${DB_SUPPORTED[@]}" )" - einfo "DB Include Dir: ${dbdir}" - einfo "DB library: ${dbname}" - - rm -f "${S}/config.in" || die "Can't remove packaged config.in" - - printf "INCLUDE = %s\nLIB = %s\nDBNAME = -l%s\n" \ - "${dbdir}" \ - "/usr/lib" \ - "${dbname}" > "${S}"/config.in || die "Can't write config.in" - - perl-module_src_prepare -} |