Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libfwbuilder: libfwbuilder-3.0.5.ebuild ChangeLog
Date: Sat, 27 Jun 2009 17:23:36
Message-Id: E1MKbcj-0008JD-Ls@stork.gentoo.org
1 patrick 09/06/27 17:23:33
2
3 Modified: ChangeLog
4 Added: libfwbuilder-3.0.5.ebuild
5 Log:
6 Bump to 3.0.5, fixes #275299
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.83 net-libs/libfwbuilder/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libfwbuilder/ChangeLog?rev=1.83&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libfwbuilder/ChangeLog?rev=1.83&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libfwbuilder/ChangeLog?r1=1.82&r2=1.83
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libfwbuilder/ChangeLog,v
19 retrieving revision 1.82
20 retrieving revision 1.83
21 diff -u -r1.82 -r1.83
22 --- ChangeLog 15 Apr 2009 19:42:25 -0000 1.82
23 +++ ChangeLog 27 Jun 2009 17:23:33 -0000 1.83
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libfwbuilder
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libfwbuilder/ChangeLog,v 1.82 2009/04/15 19:42:25 maekke Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libfwbuilder/ChangeLog,v 1.83 2009/06/27 17:23:33 patrick Exp $
30 +
31 +*libfwbuilder-3.0.5 (27 Jun 2009)
32 +
33 + 27 Jun 2009; Patrick Lauer <patrick@g.o>
34 + +libfwbuilder-3.0.5.ebuild:
35 + Bump to 3.0.5, fixes #275299
36
37 15 Apr 2009; Markus Meier <maekke@g.o> libfwbuilder-3.0.3.ebuild:
38 amd64/x86 stable, bug #235809
39
40
41
42 1.1 net-libs/libfwbuilder/libfwbuilder-3.0.5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libfwbuilder/libfwbuilder-3.0.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libfwbuilder/libfwbuilder-3.0.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libfwbuilder-3.0.5.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libfwbuilder/libfwbuilder-3.0.5.ebuild,v 1.1 2009/06/27 17:23:33 patrick Exp $
52
53 EAPI="2"
54
55 inherit qt4
56
57 DESCRIPTION="Firewall Builder 3.0 API library and compiler framework"
58 HOMEPAGE="http://www.fwbuilder.org/"
59 SRC_URI="mirror://sourceforge/fwbuilder/${P}.tar.gz"
60 SLOT="0"
61 LICENSE="GPL-2"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE="bind snmp stlport"
64
65 DEPEND=">=dev-libs/libxml2-2.4.10
66 >=dev-libs/libxslt-1.0.7
67 snmp? ( net-analyzer/net-snmp )
68 stlport? ( dev-libs/STLport )
69 bind? ( net-dns/bind )
70 x11-libs/qt-core"
71 RDEPEND="${DEPEND}"
72
73 src_prepare() {
74 qt4_src_prepare
75
76 sed -i \
77 -e '/COPYING/d' -e '/INSTALL/d' \
78 doc/doc.pro || die "sed failed"
79
80 sed -i \
81 -e '/\.\/runqmake\.sh$/d' \
82 configure || die "sed configure failed"
83 }
84
85 src_configure() {
86 use snmp || export with_ucdsnmp="no"
87 econf \
88 --with-docdir="/usr/share/doc/${PF}" \
89 $(use_with stlport stlport) \
90 $(use_with bind lwres)
91
92 for pro_file in $(find "${S}" -name "*.pro"); do
93 eqmake4 "${pro_file}" -o "$(dirname ${pro_file})/Makefile" "CONFIG+=nostrip" || die "running eqmake4 for ${pro_file} failed"
94 done
95 }
96
97 src_install() {
98 emake INSTALL_ROOT="${D}" install || die "emake install failed"
99 }