diff options
author | Michael Cummings <mcummings@gentoo.org> | 2002-09-09 21:53:26 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2002-09-09 21:53:26 +0000 |
commit | 0227fa76a3c8d98584a051b7ab9d11704c8f0448 (patch) | |
tree | 29e1ea66f948bb8475e173b0b7af78a656c1b595 /dev-perl/DB_File/DB_File-1.803-r1.ebuild | |
parent | This test eclass has been tested on all platforms and is no longer (diff) | |
download | gentoo-2-0227fa76a3c8d98584a051b7ab9d11704c8f0448.tar.gz gentoo-2-0227fa76a3c8d98584a051b7ab9d11704c8f0448.tar.bz2 gentoo-2-0227fa76a3c8d98584a051b7ab9d11704c8f0448.zip |
These are syntax fixes for the new perl eclass. The new perl eclass uses a corrected makemaker for perl.
Diffstat (limited to 'dev-perl/DB_File/DB_File-1.803-r1.ebuild')
-rw-r--r-- | dev-perl/DB_File/DB_File-1.803-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-perl/DB_File/DB_File-1.803-r1.ebuild b/dev-perl/DB_File/DB_File-1.803-r1.ebuild new file mode 100644 index 000000000000..9c7c2448161b --- /dev/null +++ b/dev-perl/DB_File/DB_File-1.803-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DB_File/DB_File-1.803-r1.ebuild,v 1.1 2002/09/09 21:53:26 mcummings Exp $ + +inherit perl-module + +S=${WORKDIR}/${P} +DESCRIPTION="A Berkeley DB Support Perl Module" +SRC_URI="http://www.cpan.org/modules/by-module/DB_File/${P}.tar.gz" +HOMEPAGE="http://www.cpan.org/modules/by-module/DB_File/${P}.readme" + +SLOT="0" +LICENSE="Artistic | GPL-2" +KEYWORDS="x86" + +DEPEND="${DEPEND} + >=sys-libs/db-3.2" + +mydoc="Changes" + +src_compile() { + + cp ${FILESDIR}/config.in . + cd ${S} + cp Makefile.PL Makefile.PL.bak + sed -e "s|' '|''|g" Makefile.PL.bak > Makefile.PL + perl-module_src_compile + +} |