Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/mousepad: metadata.xml mousepad-0.2.16.ebuild
Date: Fri, 28 Aug 2009 20:15:57
Message-Id: E1Mg06H-000224-NX@stork.gentoo.org
1 ssuominen 09/08/25 17:46:29
2
3 Modified: metadata.xml mousepad-0.2.16.ebuild
4 Log:
5 Use xfconf.eclass
6 (Portage version: 2.2_rc40/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 app-editors/mousepad/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/mousepad/metadata.xml?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/mousepad/metadata.xml?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/mousepad/metadata.xml?r1=1.1&r2=1.2
14
15 Index: metadata.xml
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-editors/mousepad/metadata.xml,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- metadata.xml 22 Jun 2008 23:43:07 -0000 1.1
22 +++ metadata.xml 25 Aug 2009 17:46:29 -0000 1.2
23 @@ -1,5 +1,5 @@
24 <?xml version="1.0" encoding="UTF-8"?>
25 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 <pkgmetadata>
27 -<herd>xfce</herd>
28 + <herd>xfce</herd>
29 </pkgmetadata>
30
31
32
33 1.11 app-editors/mousepad/mousepad-0.2.16.ebuild
34
35 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/mousepad/mousepad-0.2.16.ebuild?rev=1.11&view=markup
36 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/mousepad/mousepad-0.2.16.ebuild?rev=1.11&content-type=text/plain
37 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/mousepad/mousepad-0.2.16.ebuild?r1=1.10&r2=1.11
38
39 Index: mousepad-0.2.16.ebuild
40 ===================================================================
41 RCS file: /var/cvsroot/gentoo-x86/app-editors/mousepad/mousepad-0.2.16.ebuild,v
42 retrieving revision 1.10
43 retrieving revision 1.11
44 diff -u -r1.10 -r1.11
45 --- mousepad-0.2.16.ebuild 27 Jul 2009 17:35:02 -0000 1.10
46 +++ mousepad-0.2.16.ebuild 25 Aug 2009 17:46:29 -0000 1.11
47 @@ -1,24 +1,27 @@
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mousepad/mousepad-0.2.16.ebuild,v 1.10 2009/07/27 17:35:02 nixnut Exp $
51 +# $Header: /var/cvsroot/gentoo-x86/app-editors/mousepad/mousepad-0.2.16.ebuild,v 1.11 2009/08/25 17:46:29 ssuominen Exp $
52
53 -EAPI=1
54 +EAPI=2
55 +inherit xfconf
56
57 -inherit xfce4
58 -
59 -XFCE_VERSION=4.6.0
60 -
61 -xfce4_core
62 -
63 -DESCRIPTION="Text editor"
64 +DESCRIPTION="A simple text editor for Xfce"
65 HOMEPAGE="http://www.xfce.org/projects/mousepad/"
66 +SRC_URI="mirror://xfce/src/apps/${PN}/0.2/${P}.tar.bz2"
67 +
68 +LICENSE="GPL-2"
69 +SLOT="0"
70 KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
71 IUSE="debug"
72
73 RDEPEND=">=x11-libs/gtk+-2.6:2
74 - >=xfce-base/libxfce4util-${XFCE_VERSION}
75 - >=xfce-base/libxfcegui4-${XFCE_VERSION}"
76 + >=xfce-base/libxfcegui4-4.4"
77 DEPEND="${RDEPEND}
78 + dev-util/pkgconfig
79 dev-util/intltool"
80
81 -DOCS="AUTHORS ChangeLog NEWS README TODO"
82 +pkg_setup() {
83 + DOCS="AUTHORS ChangeLog NEWS README TODO"
84 + XFCONF="--disable-dependency-tracking
85 + $(use_enable debug)"
86 +}