Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libnftnl: ChangeLog libnftnl-1.0.0-r1.ebuild libnftnl-1.0.0.ebuild
Date: Mon, 20 Jan 2014 20:09:44
Message-Id: 20140120200940.E7EB92004C@flycatcher.gentoo.org
1 chainsaw 14/01/20 20:09:40
2
3 Modified: ChangeLog
4 Added: libnftnl-1.0.0-r1.ebuild
5 Removed: libnftnl-1.0.0.ebuild
6 Log:
7 Let us actually install this shared library.
8
9 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
10
11 Revision Changes Path
12 1.2 net-libs/libnftnl/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnftnl/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnftnl/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnftnl/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnftnl/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 20 Jan 2014 19:54:23 -0000 1.1
25 +++ ChangeLog 20 Jan 2014 20:09:40 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/libnftnl
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnftnl/ChangeLog,v 1.1 2014/01/20 19:54:23 chainsaw Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnftnl/ChangeLog,v 1.2 2014/01/20 20:09:40 chainsaw Exp $
31 +
32 +*libnftnl-1.0.0-r1 (20 Jan 2014)
33 +
34 + 20 Jan 2014; Tony Vroon <chainsaw@g.o> -libnftnl-1.0.0.ebuild,
35 + +libnftnl-1.0.0-r1.ebuild:
36 + Let us actually install this shared library.
37
38 *libnftnl-1.0.0 (20 Jan 2014)
39
40
41
42
43 1.1 net-libs/libnftnl/libnftnl-1.0.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnftnl/libnftnl-1.0.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnftnl/libnftnl-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libnftnl-1.0.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnftnl/libnftnl-1.0.0-r1.ebuild,v 1.1 2014/01/20 20:09:40 chainsaw Exp $
53
54 EAPI=5
55
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem"
59 HOMEPAGE="http://www.netfilter.org/projects/libnftnl"
60 SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
65 IUSE="examples static-libs"
66
67 RDEPEND="
68 net-libs/libmnl
69 "
70
71 src_configure() {
72 econf \
73 --libdir="${EPREFIX}"/$(get_libdir) \
74 $(use_enable static-libs static)
75 }
76
77 src_install() {
78 default
79 prune_libtool_files
80
81 if use examples; then
82 find examples/ -name 'Makefile*' -delete
83 dodoc -r examples/
84 docompress -x /usr/share/doc/${PF}/examples
85 fi
86 }