summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2011-01-13 10:41:44 +0000
committerTorsten Veller <tove@gentoo.org>2011-01-13 10:41:44 +0000
commite5e017c9c4ed536e9006cc8af0e397424cbc016f (patch)
tree2c1eb776ca9112890630fa787ac1dbf836d75818 /perl-core/DB_File
parentVersion bump (diff)
downloadgentoo-2-e5e017c9c4ed536e9006cc8af0e397424cbc016f.tar.gz
gentoo-2-e5e017c9c4ed536e9006cc8af0e397424cbc016f.tar.bz2
gentoo-2-e5e017c9c4ed536e9006cc8af0e397424cbc016f.zip
Version bump
(Portage version: 2.2.0_alpha15/cvs/Linux x86_64)
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.821.ebuild29
2 files changed, 36 insertions, 2 deletions
diff --git a/perl-core/DB_File/ChangeLog b/perl-core/DB_File/ChangeLog
index d7f14b26f63f..ecc586ecfa93 100644
--- a/perl-core/DB_File/ChangeLog
+++ b/perl-core/DB_File/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for perl-core/DB_File
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/perl-core/DB_File/ChangeLog,v 1.39 2010/01/17 12:56:51 tove Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/perl-core/DB_File/ChangeLog,v 1.40 2011/01/13 10:41:44 tove Exp $
+
+*DB_File-1.821 (13 Jan 2011)
+
+ 13 Jan 2011; Torsten Veller <tove@gentoo.org> +DB_File-1.821.ebuild:
+ Version bump
17 Jan 2010; Torsten Veller <tove@gentoo.org> -DB_File-1.815.ebuild,
-DB_File-1.819.ebuild:
diff --git a/perl-core/DB_File/DB_File-1.821.ebuild b/perl-core/DB_File/DB_File-1.821.ebuild
new file mode 100644
index 000000000000..5c037abbd708
--- /dev/null
+++ b/perl-core/DB_File/DB_File-1.821.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 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.821.ebuild,v 1.1 2011/01/13 10:41:44 tove Exp $
+
+EAPI=3
+
+MODULE_AUTHOR=PMQS
+MODULE_VERSION=1.821
+inherit perl-module multilib eutils
+
+DESCRIPTION="A Berkeley DB Support Perl Module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+IUSE=""
+
+RDEPEND="sys-libs/db"
+DEPEND="${RDEPEND}"
+
+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
+}