diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-10-20 11:50:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-10-20 11:50:04 +0000 |
commit | f4bbc2ae9c247976cc0933c87da039da85a8fb6e (patch) | |
tree | dc510a42354abb77bfd1dcfda7137840ef648680 /net-libs/libnet | |
parent | Fixed build issue with USE=doc, thank Andrew Savchenko for report in bug #289166 (diff) | |
download | gentoo-2-f4bbc2ae9c247976cc0933c87da039da85a8fb6e.tar.gz gentoo-2-f4bbc2ae9c247976cc0933c87da039da85a8fb6e.tar.bz2 gentoo-2-f4bbc2ae9c247976cc0933c87da039da85a8fb6e.zip |
Version bump from libnet-dev.sf.net.
(Portage version: 2.2_rc46/cvs/Linux i686)
Diffstat (limited to 'net-libs/libnet')
-rw-r--r-- | net-libs/libnet/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/libnet/libnet-1.1.4.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/net-libs/libnet/ChangeLog b/net-libs/libnet/ChangeLog index 50b543cb3af6..4898ff6d3590 100644 --- a/net-libs/libnet/ChangeLog +++ b/net-libs/libnet/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libnet # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.45 2009/05/25 23:41:56 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.46 2009/10/20 11:50:04 jer Exp $ + +*libnet-1.1.4 (20 Oct 2009) + + 20 Oct 2009; Jeroen Roovers <jer@gentoo.org> +libnet-1.1.4.ebuild: + Version bump from libnet-dev.sf.net. *libnet-1.1.2.1-r2 (25 May 2009) diff --git a/net-libs/libnet/libnet-1.1.4.ebuild b/net-libs/libnet/libnet-1.1.4.ebuild new file mode 100644 index 000000000000..5e763285fc23 --- /dev/null +++ b/net-libs/libnet/libnet-1.1.4.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.1.4.ebuild,v 1.1 2009/10/20 11:50:04 jer Exp $ + +DESCRIPTION="library to provide an API for commonly used low-level network functions (mainly packet injection)" +HOMEPAGE="http://libnet-dev.sourceforge.net/" +SRC_URI="mirror://sourceforge/project/libnet-dev/libnet-dev/${P}/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="1.1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc" + +DEPEND="sys-devel/autoconf" +RDEPEND="" + +src_install(){ + emake DESTDIR="${D}" install || die "Failed to install" + + dodoc README \ + doc/{BUGS,CHANGELOG,CONTRIB,DESIGN_NOTES,MIGRATION} \ + doc/{PACKET_BUILDING,PORTED,RAWSOCKET_NON_SEQUITUR,TODO} + if use doc ; then + dohtml -r doc/html/* + docinto sample + dodoc sample/*.[ch] + fi +} |