diff options
Diffstat (limited to 'net-misc/netcf/netcf-0.1.6.ebuild')
-rw-r--r-- | net-misc/netcf/netcf-0.1.6.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-misc/netcf/netcf-0.1.6.ebuild b/net-misc/netcf/netcf-0.1.6.ebuild new file mode 100644 index 000000000000..98a0c567f4d3 --- /dev/null +++ b/net-misc/netcf/netcf-0.1.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/netcf/netcf-0.1.6.ebuild,v 1.1 2010/07/07 17:46:20 cardoe Exp $ + +EAPI=2 + +DESCRIPTION="netcf is a cross-platform network configuration library" +HOMEPAGE="https://fedorahosted.org/netcf/" +SRC_URI="https://fedorahosted.org/released/netcf/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=app-admin/augeas-0.5.0 + dev-libs/libnl + dev-libs/libxml2 + dev-libs/libxslt + sys-libs/readline" +RDEPEND="${DEPEND}" + +src_configure() { + # static libs are a waste of time and disk for this + econf --disable-static +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS ChangeLog README NEWS +} |