diff options
author | 2004-08-05 20:04:53 +0000 | |
---|---|---|
committer | 2004-08-05 20:04:53 +0000 | |
commit | 7ea4f07d3405e6b3a83eee219b0a57fc1f8f9852 (patch) | |
tree | a7f5a844899146f28f46805ba161677a09ca0957 /dev-libs/libdnet/libdnet-1.8-r1.ebuild | |
parent | Compile and ptrace fix for 2.4.19; bug #59500. (Manifest recommit) (diff) | |
download | gentoo-2-7ea4f07d3405e6b3a83eee219b0a57fc1f8f9852.tar.gz gentoo-2-7ea4f07d3405e6b3a83eee219b0a57fc1f8f9852.tar.bz2 gentoo-2-7ea4f07d3405e6b3a83eee219b0a57fc1f8f9852.zip |
new ebuild supports optional python module
Diffstat (limited to 'dev-libs/libdnet/libdnet-1.8-r1.ebuild')
-rw-r--r-- | dev-libs/libdnet/libdnet-1.8-r1.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-libs/libdnet/libdnet-1.8-r1.ebuild b/dev-libs/libdnet/libdnet-1.8-r1.ebuild new file mode 100644 index 000000000000..45e61bfadf86 --- /dev/null +++ b/dev-libs/libdnet/libdnet-1.8-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.8-r1.ebuild,v 1.1 2004/08/05 20:04:53 rphillips Exp $ + +inherit eutils + +DESCRIPTION="simplified, portable interface to several low-level networking routines" +HOMEPAGE="http://libdnet.sourceforge.net/" +SRC_URI="mirror://sourceforge/libdnet/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~hppa ~ia64 ~amd64" +IUSE="python" + +src_compile () { + econf `use_with python python` + emake +} + +src_install () { + einstall || die + dodoc ChangeLog VERSION README +} |