diff options
author | Torsten Veller <tove@gentoo.org> | 2009-08-31 08:14:52 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2009-08-31 08:14:52 +0000 |
commit | 29b91e21ee972a93b90f8591fd81f0db1235373c (patch) | |
tree | abb9fd9268f532b5d7e0df3ef05ad10b833c7563 /perl-core/Compress-Raw-Zlib | |
parent | Fix broken Manifest for iptables-1.4.3.2.ebuild and ChangeLog. (diff) | |
download | historical-29b91e21ee972a93b90f8591fd81f0db1235373c.tar.gz historical-29b91e21ee972a93b90f8591fd81f0db1235373c.tar.bz2 historical-29b91e21ee972a93b90f8591fd81f0db1235373c.zip |
Version bump
Package-Manager: portage-2.2_rc40/cvs/Linux x86_64
Diffstat (limited to 'perl-core/Compress-Raw-Zlib')
-rw-r--r-- | perl-core/Compress-Raw-Zlib/ChangeLog | 8 | ||||
-rw-r--r-- | perl-core/Compress-Raw-Zlib/Compress-Raw-Zlib-2.021.ebuild | 33 |
2 files changed, 40 insertions, 1 deletions
diff --git a/perl-core/Compress-Raw-Zlib/ChangeLog b/perl-core/Compress-Raw-Zlib/ChangeLog index efa836184f74..447e873fbfde 100644 --- a/perl-core/Compress-Raw-Zlib/ChangeLog +++ b/perl-core/Compress-Raw-Zlib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for perl-core/Compress-Raw-Zlib # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/perl-core/Compress-Raw-Zlib/ChangeLog,v 1.11 2009/08/18 21:57:54 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/perl-core/Compress-Raw-Zlib/ChangeLog,v 1.12 2009/08/31 08:14:15 tove Exp $ + +*Compress-Raw-Zlib-2.021 (31 Aug 2009) + + 31 Aug 2009; Torsten Veller <tove@gentoo.org> + +Compress-Raw-Zlib-2.021.ebuild: + Version bump 18 Aug 2009; Torsten Veller <tove@gentoo.org> -Compress-Raw-Zlib-2.005.ebuild, -Compress-Raw-Zlib-2.015.ebuild, diff --git a/perl-core/Compress-Raw-Zlib/Compress-Raw-Zlib-2.021.ebuild b/perl-core/Compress-Raw-Zlib/Compress-Raw-Zlib-2.021.ebuild new file mode 100644 index 000000000000..e696ba4bb0b0 --- /dev/null +++ b/perl-core/Compress-Raw-Zlib/Compress-Raw-Zlib-2.021.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/perl-core/Compress-Raw-Zlib/Compress-Raw-Zlib-2.021.ebuild,v 1.1 2009/08/31 08:14:15 tove Exp $ + +EAPI=2 + +MODULE_AUTHOR=PMQS +inherit multilib perl-module + +DESCRIPTION="Low-Level Interface to zlib compression library" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +IUSE="test" + +RDEPEND=">=sys-libs/zlib-1.2.2.1" +DEPEND="${RDEPEND} + test? ( dev-perl/Test-Pod )" + +SRC_TEST="do" + +src_prepare() { + perl-module_src_prepare + + cat <<-EOF > "${S}/config.in" + BUILD_ZLIB = False + INCLUDE = /usr/include + LIB = /usr/${get_libdir} + + OLD_ZLIB = False + GZIP_OS_CODE = AUTO_DETECT + EOF +} |