Gentoo Archives: gentoo-commits

From: "Maciej Mrozowski (reavertm)" <reavertm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-misc/kcm-ufw: kcm-ufw-0.4.1-r2.ebuild ChangeLog kcm-ufw-0.4.1-r1.ebuild
Date: Fri, 03 Feb 2012 22:12:58
Message-Id: 20120203220212.BF45920088@flycatcher.gentoo.org
1 reavertm 12/02/03 22:02:12
2
3 Modified: ChangeLog
4 Added: kcm-ufw-0.4.1-r2.ebuild
5 Removed: kcm-ufw-0.4.1-r1.ebuild
6 Log:
7 Revision bump
8
9 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.4 kde-misc/kcm-ufw/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/kcm-ufw/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/kcm-ufw/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/kcm-ufw/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/kde-misc/kcm-ufw/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 3 Feb 2012 21:59:02 -0000 1.3
25 +++ ChangeLog 3 Feb 2012 22:02:12 -0000 1.4
26 @@ -1,6 +1,12 @@
27 # ChangeLog for kde-misc/kcm-ufw
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kcm-ufw/ChangeLog,v 1.3 2012/02/03 21:59:02 reavertm Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kcm-ufw/ChangeLog,v 1.4 2012/02/03 22:02:12 reavertm Exp $
31 +
32 +*kcm-ufw-0.4.1-r2 (03 Feb 2012)
33 +
34 + 03 Feb 2012; Maciej Mrozowski <reavertm@g.o> +kcm-ufw-0.4.1-r2.ebuild,
35 + -kcm-ufw-0.4.1-r1.ebuild:
36 + Revision bump
37
38 03 Feb 2012; Maciej Mrozowski <reavertm@g.o> kcm-ufw-0.4.1-r1.ebuild:
39 Fix installation prefix, bug 402021. Add debug to IUSE.
40
41
42
43 1.1 kde-misc/kcm-ufw/kcm-ufw-0.4.1-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/kcm-ufw/kcm-ufw-0.4.1-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-misc/kcm-ufw/kcm-ufw-0.4.1-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: kcm-ufw-0.4.1-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/kde-misc/kcm-ufw/kcm-ufw-0.4.1-r2.ebuild,v 1.1 2012/02/03 22:02:10 reavertm Exp $
53
54 EAPI=4
55
56 PYTHON_DEPEND="2"
57 inherit python kde4-base
58
59 MY_P="${P/-/_}"
60
61 DESCRIPTION="KCM module to control the Uncomplicated Firewall"
62 HOMEPAGE="http://kde-apps.org/content/show.php?content=137789"
63 SRC_URI="http://craigd.wikispaces.com/file/view/${MY_P}.tar.bz2"
64
65 LICENSE="GPL-3"
66 KEYWORDS="~amd64 ~x86"
67 SLOT="4"
68 IUSE="debug"
69
70 LINGUAS="en es fr lt"
71 for lingua in ${LINGUAS}; do
72 IUSE+=" linguas_${lingua}"
73 done
74
75 COMMON_DEPEND="
76 net-firewall/ufw
77 sys-auth/polkit-kde-agent
78 "
79 DEPEND="${COMMON_DEPEND}
80 dev-util/automoc
81 "
82 RDEPEND="${COMMON_DEPEND}
83 $(add_kdebase_dep kcmshell)
84 "
85
86 S="${WORKDIR}/${MY_P}"
87
88 pkg_setup() {
89 python_pkg_setup
90 kde4-base_pkg_setup
91 }
92
93 src_configure() {
94 LANGS=""
95 for x in ${LINGUAS}; do
96 use linguas_${x} && LANGS+="${x};"
97 done
98 MYCMAKEARGS="-DUFW_TRANSLATIONS=${LANGS}"
99 kde4-base_src_configure
100 }