diff options
author | Damien Krotkine <dams@gentoo.org> | 2004-10-19 22:42:01 +0000 |
---|---|---|
committer | Damien Krotkine <dams@gentoo.org> | 2004-10-19 22:42:01 +0000 |
commit | ec38ee845d2e7e9b8419381e81f812f2203bf9f0 (patch) | |
tree | 14fdf34d4d272e54dca78b43f8df2e7c677a2716 /dev-util/libconf | |
parent | Added support for FAKE_XMMS_VERSION to beep-config. (Manifest recommit) (diff) | |
download | gentoo-2-ec38ee845d2e7e9b8419381e81f812f2203bf9f0.tar.gz gentoo-2-ec38ee845d2e7e9b8419381e81f812f2203bf9f0.tar.bz2 gentoo-2-ec38ee845d2e7e9b8419381e81f812f2203bf9f0.zip |
version 0.39.1 (corrects etags bug, thanks to Pylon)
Diffstat (limited to 'dev-util/libconf')
-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.1 | 1 | ||||
-rw-r--r-- | dev-util/libconf/libconf-0.39.1.ebuild | 27 |
4 files changed, 36 insertions, 1 deletions
diff --git a/dev-util/libconf/ChangeLog b/dev-util/libconf/ChangeLog index 4373e78a1c74..efcf0a2eb8ba 100644 --- a/dev-util/libconf/ChangeLog +++ b/dev-util/libconf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/libconf # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/ChangeLog,v 1.4 2004/10/11 23:23:08 dams Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/ChangeLog,v 1.5 2004/10/19 22:42:01 dams Exp $ + +*libconf-0.39.1 (19 Oct 2004) + + 19 Oct 2004; <dams@gentoo.org> +libconf-0.39.1.ebuild: + version 0.39.1 (corrects etags bug, thanks pylon) *libconf-0.39_alpha (10 Oct 2004) diff --git a/dev-util/libconf/Manifest b/dev-util/libconf/Manifest index e5ff934a50c8..32b1ad7686c2 100644 --- a/dev-util/libconf/Manifest +++ b/dev-util/libconf/Manifest @@ -2,7 +2,9 @@ MD5 089dda0382df58a82cfd7ede838e1687 ChangeLog 764 MD5 5f1c3b9a62f513d6a4802b57677c23bf metadata.xml 284 MD5 6e1c940dac57cc6ec61e9c4f70b62d8c libconf-0.29.ebuild 718 MD5 dc34b8350c9eef33e3eb0ae18b04cc35 libconf-0.28.ebuild 679 +MD5 995121a0faa505b114c0def60bdc64de libconf-0.39.1.ebuild 718 MD5 995121a0faa505b114c0def60bdc64de libconf-0.39_alpha.ebuild 718 MD5 813fffddc48e3fecaa47ad5c4674454b files/digest-libconf-0.29 70 +MD5 98f61655f831f3426abbda2d00bce6b4 files/digest-libconf-0.39.1 72 MD5 7c60f6a0a7374ffaa0f1148bc523f66b files/digest-libconf-0.39_alpha 76 MD5 705119e17deb58b46fa93460207fff7a files/digest-libconf-0.28 70 diff --git a/dev-util/libconf/files/digest-libconf-0.39.1 b/dev-util/libconf/files/digest-libconf-0.39.1 new file mode 100644 index 000000000000..83dba647e3b8 --- /dev/null +++ b/dev-util/libconf/files/digest-libconf-0.39.1 @@ -0,0 +1 @@ +MD5 46c596ee2815c04699092aaab862b6f3 perl-Libconf-0.39.1.tar.bz2 170949 diff --git a/dev-util/libconf/libconf-0.39.1.ebuild b/dev-util/libconf/libconf-0.39.1.ebuild new file mode 100644 index 000000000000..33221d6725cf --- /dev/null +++ b/dev-util/libconf/libconf-0.39.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/libconf-0.39.1.ebuild,v 1.1 2004/10/19 22:42:01 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 +} |