diff options
author | Damien Krotkine <dams@gentoo.org> | 2005-02-17 13:56:19 +0000 |
---|---|---|
committer | Damien Krotkine <dams@gentoo.org> | 2005-02-17 13:56:19 +0000 |
commit | f3a12ea1721f1a38c8cbc10fd18c8edd6b9ce538 (patch) | |
tree | 8093ae6d0a3366ea9482044cdb3df2bc7c88c40b /dev-util | |
parent | Added to ~hppa. (diff) | |
download | gentoo-2-f3a12ea1721f1a38c8cbc10fd18c8edd6b9ce538.tar.gz gentoo-2-f3a12ea1721f1a38c8cbc10fd18c8edd6b9ce538.tar.bz2 gentoo-2-f3a12ea1721f1a38c8cbc10fd18c8edd6b9ce538.zip |
new version, multiple filehandler bug correction
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/libconf/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/libconf/Manifest | 2 | ||||
-rw-r--r-- | dev-util/libconf/files/digest-libconf-0.39.10 | 1 | ||||
-rw-r--r-- | dev-util/libconf/libconf-0.39.10.ebuild | 27 |
4 files changed, 36 insertions, 1 deletions
diff --git a/dev-util/libconf/ChangeLog b/dev-util/libconf/ChangeLog index 811c536e47e1..949c3cb82d84 100644 --- a/dev-util/libconf/ChangeLog +++ b/dev-util/libconf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/libconf # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/ChangeLog,v 1.14 2005/02/15 14:15:02 dams Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/ChangeLog,v 1.15 2005/02/17 13:56:19 dams Exp $ + +*libconf-0.39.10 (17 Feb 2005) + + 17 Feb 2005; <dams@gentoo.org> +libconf-0.39.10.ebuild: + correcting a multiple filehandlers bug *libconf-0.39.9 (15 Feb 2005) diff --git a/dev-util/libconf/Manifest b/dev-util/libconf/Manifest index 1708b04d630c..0cdb2d920135 100644 --- a/dev-util/libconf/Manifest +++ b/dev-util/libconf/Manifest @@ -12,6 +12,7 @@ MD5 1962c26dd1ddeee52b3997997367285a libconf-0.39.6.ebuild 714 MD5 af0cac1c8140183b536c2c25b0e546eb libconf-0.39.7.ebuild 714 MD5 f30bd3a5638c42baf1bbe643d0f78007 libconf-0.39.8.ebuild 714 MD5 10a3dc7179e627bc52f1736fe4238570 libconf-0.39.9.ebuild 714 +MD5 10a3dc7179e627bc52f1736fe4238570 libconf-0.39.10.ebuild 714 MD5 705119e17deb58b46fa93460207fff7a files/digest-libconf-0.28 70 MD5 813fffddc48e3fecaa47ad5c4674454b files/digest-libconf-0.29 70 MD5 7c60f6a0a7374ffaa0f1148bc523f66b files/digest-libconf-0.39_alpha 76 @@ -24,3 +25,4 @@ MD5 0a738fb9b456c7f4b867ea5b75236ca9 files/digest-libconf-0.39.6 72 MD5 5cca256b64cfe909715c0703ea0afeb7 files/digest-libconf-0.39.7 72 MD5 3d5b20ef2bbf9bf394c5fd940234d800 files/digest-libconf-0.39.8 72 MD5 d12971ef42d8e51ca94457dff285481e files/digest-libconf-0.39.9 72 +MD5 bb90fe0b21801b1394d0cd2f41f5c62a files/digest-libconf-0.39.10 73 diff --git a/dev-util/libconf/files/digest-libconf-0.39.10 b/dev-util/libconf/files/digest-libconf-0.39.10 new file mode 100644 index 000000000000..e95ac68f3441 --- /dev/null +++ b/dev-util/libconf/files/digest-libconf-0.39.10 @@ -0,0 +1 @@ +MD5 d4c068346492a02d59f103db0f9d4002 perl-Libconf-0.39.10.tar.bz2 219562 diff --git a/dev-util/libconf/libconf-0.39.10.ebuild b/dev-util/libconf/libconf-0.39.10.ebuild new file mode 100644 index 000000000000..3fa4dcaedc88 --- /dev/null +++ b/dev-util/libconf/libconf-0.39.10.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/libconf-0.39.10.ebuild,v 1.1 2005/02/17 13:56:19 dams Exp $ + +IUSE="" + +MY_P=perl-${PN/l/L}-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Centralized abstraction layer for system configuration files" +HOMEPAGE="http://libconf.net/" +SRC_URI="http://libconf.net/download/${MY_P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64 ~ppc64" + +DEPEND="dev-lang/perl" + +src_compile() { + emake || die "make failed" + make test || die "make test failed" +} + +src_install() { + einstall PREFIX=${D}/usr + dodoc AUTHORS COPYING ChangeLog +} |