diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-07-29 17:49:12 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-07-29 17:49:12 +0000 |
commit | 52422a0c4eb3c426a89b598522d8a86723457e0e (patch) | |
tree | 05653098d7da1e9a99d89affa56c97e5f63b6876 /net-libs/libnet | |
parent | Bump to 0.5.1, thanks to Nikoli (diff) | |
download | gentoo-2-52422a0c4eb3c426a89b598522d8a86723457e0e.tar.gz gentoo-2-52422a0c4eb3c426a89b598522d8a86723457e0e.tar.bz2 gentoo-2-52422a0c4eb3c426a89b598522d8a86723457e0e.zip |
Old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libnet')
-rw-r--r-- | net-libs/libnet/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/libnet/libnet-1.0.2a-r3.ebuild | 58 |
2 files changed, 4 insertions, 59 deletions
diff --git a/net-libs/libnet/ChangeLog b/net-libs/libnet/ChangeLog index 96899a8e6efc..5d288c2f127a 100644 --- a/net-libs/libnet/ChangeLog +++ b/net-libs/libnet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libnet # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.95 2012/07/29 17:13:48 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.96 2012/07/29 17:49:12 jer Exp $ + + 29 Jul 2012; Jeroen Roovers <jer@gentoo.org> -libnet-1.0.2a-r3.ebuild: + Old. 29 Jul 2012; Raúl Porcel <armin76@gentoo.org> libnet-1.0.2a-r4.ebuild: alpha/sparc stable wrt #418275 diff --git a/net-libs/libnet/libnet-1.0.2a-r3.ebuild b/net-libs/libnet/libnet-1.0.2a-r3.ebuild deleted file mode 100644 index 32f8e21e435e..000000000000 --- a/net-libs/libnet/libnet-1.0.2a-r3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.0.2a-r3.ebuild,v 1.23 2011/09/19 04:50:45 naota Exp $ - -inherit eutils autotools - -DESCRIPTION="library to provide an API for commonly used low-level network functions (mainly packet injection)" -HOMEPAGE="http://www.packetfactory.net/libnet/" -SRC_URI="http://www.packetfactory.net/libnet/dist/deprecated/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="1.0" -KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="" - -S=${WORKDIR}/Libnet-${PV} - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/libnet-gcc33-fix - epatch "${FILESDIR}"/${PV}-slot.patch - cd "${S}" - mv libnet-config.in libnet-${SLOT}-config.in || die "moving libnet-config" - cd "${S}"/include - ln -s libnet.h libnet-${SLOT}.h - cd libnet - for f in *.h ; do - ln -s ${f} ${f/-/-${SLOT}-} || die "linking ${f}" - done - cd "${S}"/doc - ln -s libnet.3 libnet-${SLOT}.3 || die "linking manpage" - cd "${S}" - eautoconf || die -} - -src_compile() { - econf || die - emake CFLAGS="${CFLAGS}" || die "Failed to compile" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - doman "${D}"/usr/man/man3/libnet-1.0.3 - rm -r "${D}"/usr/man - - dodoc VERSION doc/{README,TODO*,CHANGELOG*} - newdoc README README.1st - docinto example ; dodoc example/libnet* - docinto Ancillary ; dodoc doc/Ancillary/* -} - -pkg_postinst(){ - elog "libnet ${SLOT} is deprecated !" - elog "config script: libnet-${SLOT}-config" - elog "manpage: libnet-${SLOT}" - elog "library: libnet-${SLOT}.a" - elog "include: libnet-${SLOT}.h" -} |