Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libnet: ChangeLog libnet-1.2_rc1-r1.ebuild libnet-1.2_rc1.ebuild
Date: Wed, 27 Mar 2013 20:28:23
Message-Id: 20130327202817.9A0DF2171D@flycatcher.gentoo.org
1 jer 13/03/27 20:28:17
2
3 Modified: ChangeLog
4 Added: libnet-1.2_rc1-r1.ebuild
5 Removed: libnet-1.2_rc1.ebuild
6 Log:
7 Fix LIBNET_VERSION string (bug #463528).
8
9 (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.101 net-libs/libnet/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnet/ChangeLog?rev=1.101&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnet/ChangeLog?rev=1.101&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnet/ChangeLog?r1=1.100&r2=1.101
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v
21 retrieving revision 1.100
22 retrieving revision 1.101
23 diff -u -r1.100 -r1.101
24 --- ChangeLog 15 Mar 2013 17:58:17 -0000 1.100
25 +++ ChangeLog 27 Mar 2013 20:28:17 -0000 1.101
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/libnet
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.100 2013/03/15 17:58:17 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.101 2013/03/27 20:28:17 jer Exp $
31 +
32 +*libnet-1.2_rc1-r1 (27 Mar 2013)
33 +
34 + 27 Mar 2013; Jeroen Roovers <jer@g.o> -libnet-1.2_rc1.ebuild,
35 + +libnet-1.2_rc1-r1.ebuild, +files/libnet-1.2-rc.patch:
36 + Fix LIBNET_VERSION string (bug #463528).
37
38 *libnet-1.2_rc1 (15 Mar 2013)
39
40
41
42
43 1.1 net-libs/libnet/libnet-1.2_rc1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnet/libnet-1.2_rc1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnet/libnet-1.2_rc1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libnet-1.2_rc1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.2_rc1-r1.ebuild,v 1.1 2013/03/27 20:28:17 jer Exp $
53
54 EAPI=5
55 inherit autotools eutils
56
57 DESCRIPTION="library to provide an API for commonly used low-level network functions (mainly packet injection)"
58 HOMEPAGE="http://libnet-dev.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/project/${PN}-dev/${P/_/-}.tar.gz"
60
61 LICENSE="BSD BSD-2 HPND"
62 SLOT="1.1"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
64 IUSE="doc static-libs"
65
66 DEPEND="sys-devel/autoconf"
67 RDEPEND=""
68
69 DOCS=(
70 README doc/{CHANGELOG,CONTRIB,DESIGN_NOTES,MIGRATION}
71 doc/{PACKET_BUILDING,PORTED,RAWSOCKET_NON_SEQUITUR,TODO}
72 )
73
74 S=${WORKDIR}/${P/_/-}
75
76 src_prepare() {
77 epatch "${FILESDIR}"/${PN}-1.2-rc.patch
78 eautoreconf
79 }
80 src_configure() {
81 econf $(use_enable static-libs static)
82 }
83
84 src_install() {
85 default
86
87 if use doc ; then
88 dohtml -r doc/html/*
89 docinto sample
90 dodoc sample/*.[ch]
91 fi
92
93 use static-libs || prune_libtool_files
94 }