diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-02-26 21:43:32 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-02-26 21:43:32 +0000 |
commit | 3764a7f362d9c1b6157b013f3437e635e8a30aa9 (patch) | |
tree | bbabc514a543a0ab400fc0c5c13989f9f5d48383 /dev-util/libconf/libconf-0.28.ebuild | |
parent | version bump (bug #42992) (Manifest recommit) (diff) | |
download | gentoo-2-3764a7f362d9c1b6157b013f3437e635e8a30aa9.tar.gz gentoo-2-3764a7f362d9c1b6157b013f3437e635e8a30aa9.tar.bz2 gentoo-2-3764a7f362d9c1b6157b013f3437e635e8a30aa9.zip |
New abstraction library and utilities for interacting with configuration files. The app/lib itself is written by Dams (at gentoo dot org). Seemant committed it to portage.
Diffstat (limited to 'dev-util/libconf/libconf-0.28.ebuild')
-rw-r--r-- | dev-util/libconf/libconf-0.28.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-util/libconf/libconf-0.28.ebuild b/dev-util/libconf/libconf-0.28.ebuild new file mode 100644 index 000000000000..d30a3055980e --- /dev/null +++ b/dev-util/libconf/libconf-0.28.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/libconf-0.28.ebuild,v 1.1 2004/02/26 21:43:32 seemant 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" +} + +src_install() { + einstall PREFIX=${D}/usr + dodoc AUTHORS COPYING ChangeLog +} |