summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2009-02-01 14:44:08 +0000
committerTorsten Veller <tove@gentoo.org>2009-02-01 14:44:08 +0000
commitb8bd3a186533146783923bc8e7b10e22f7535309 (patch)
tree683447a4d60e674dfb300ee3fa8297ab7fb43925 /perl-core/DB_File
parentUpdate init script so it works with baselayout1 again. Per bug #257113. (diff)
downloadgentoo-2-b8bd3a186533146783923bc8e7b10e22f7535309.tar.gz
gentoo-2-b8bd3a186533146783923bc8e7b10e22f7535309.tar.bz2
gentoo-2-b8bd3a186533146783923bc8e7b10e22f7535309.zip
Version bump
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'perl-core/DB_File')
-rw-r--r--perl-core/DB_File/ChangeLog9
-rw-r--r--perl-core/DB_File/DB_File-1.818.ebuild27
2 files changed, 34 insertions, 2 deletions
diff --git a/perl-core/DB_File/ChangeLog b/perl-core/DB_File/ChangeLog
index 4b029b87661a..e23152b9fc68 100644
--- a/perl-core/DB_File/ChangeLog
+++ b/perl-core/DB_File/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for perl-core/DB_File
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/DB_File/ChangeLog,v 1.26 2008/12/08 03:31:46 robbat2 Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/perl-core/DB_File/ChangeLog,v 1.27 2009/02/01 14:44:08 tove Exp $
+
+*DB_File-1.818 (01 Feb 2009)
+
+ 01 Feb 2009; Torsten Veller <tove@gentoo.org> +DB_File-1.818.ebuild:
+ Version bump
*DB_File-1.817 (08 Dec 2008)
diff --git a/perl-core/DB_File/DB_File-1.818.ebuild b/perl-core/DB_File/DB_File-1.818.ebuild
new file mode 100644
index 000000000000..56d5868a984b
--- /dev/null
+++ b/perl-core/DB_File/DB_File-1.818.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/perl-core/DB_File/DB_File-1.818.ebuild,v 1.1 2009/02/01 14:44:08 tove Exp $
+
+MODULE_AUTHOR=PMQS
+inherit perl-module multilib eutils
+
+DESCRIPTION="A Berkeley DB Support Perl Module"
+
+LICENSE="|| ( Artistic GPL-2 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+
+DEPEND="dev-lang/perl
+ sys-libs/db"
+
+SRC_TEST="do"
+
+src_unpack() {
+ unpack ${A}
+ if [ $(get_libdir) != "lib" ] ; then
+ sed -i "s:^LIB.*:LIB = /usr/$(get_libdir):" "${S}"/config.in || die
+ fi
+ cd "${S}"
+ epatch "${FILESDIR}"/DB_File-MakeMaker.patch
+}