Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/parcellite: ChangeLog parcellite-1.0.2_rc5-r1.ebuild parcellite-0.9.1.ebuild parcellite-1.0.1.ebuild
Date: Fri, 28 Sep 2012 15:50:57
Message-Id: 20120928155045.D9EBB21600@flycatcher.gentoo.org
1 jer 12/09/28 15:50:45
2
3 Modified: ChangeLog
4 Added: parcellite-1.0.2_rc5-r1.ebuild
5 Removed: parcellite-0.9.1.ebuild parcellite-1.0.1.ebuild
6 Log:
7 Add LINGUAS support so that USE=nls actually makes sense.
8
9 (Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.23 x11-misc/parcellite/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/ChangeLog?rev=1.23&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/ChangeLog?rev=1.23&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/ChangeLog?r1=1.22&r2=1.23
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v
21 retrieving revision 1.22
22 retrieving revision 1.23
23 diff -u -r1.22 -r1.23
24 --- ChangeLog 28 Sep 2012 14:57:59 -0000 1.22
25 +++ ChangeLog 28 Sep 2012 15:50:45 -0000 1.23
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/parcellite
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v 1.22 2012/09/28 14:57:59 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/parcellite/ChangeLog,v 1.23 2012/09/28 15:50:45 jer Exp $
31 +
32 +*parcellite-1.0.2_rc5-r1 (28 Sep 2012)
33 +
34 + 28 Sep 2012; Jeroen Roovers <jer@g.o> -parcellite-0.9.1.ebuild,
35 + -parcellite-1.0.1.ebuild, +parcellite-1.0.2_rc5-r1.ebuild:
36 + Add LINGUAS support so that USE=nls actually makes sense.
37
38 28 Sep 2012; Jeroen Roovers <jer@g.o> parcellite-1.0.2_rc5.ebuild:
39 Fix Manifest to allow newer tarball with same name but without the compiled
40
41
42
43 1.1 x11-misc/parcellite/parcellite-1.0.2_rc5-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/parcellite-1.0.2_rc5-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/parcellite/parcellite-1.0.2_rc5-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: parcellite-1.0.2_rc5-r1.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/x11-misc/parcellite/parcellite-1.0.2_rc5-r1.ebuild,v 1.1 2012/09/28 15:50:45 jer Exp $
53
54 EAPI=4
55 inherit autotools eutils fdo-mime
56
57 MY_P=${PN}-${PV/_}
58
59 DESCRIPTION="A lightweight GTK+ based clipboard manager."
60 HOMEPAGE="http://parcellite.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="nls"
67
68 PL_LINGUAS="ca cs da de es fr hu it ja nb pl pl_PL pt_BR ro ru sv tr zh_CN"
69 for lingua in ${PL_LINGUAS}; do
70 IUSE+=" linguas_${lingua}"
71 done
72
73 RDEPEND=">=dev-libs/glib-2.14
74 >=x11-libs/gtk+-2.10:2"
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig
77 nls? (
78 dev-util/intltool
79 sys-devel/gettext
80 )"
81
82 S=${WORKDIR}/${MY_P}
83
84 src_prepare() {
85 epatch "${FILESDIR}"/${P}-glib-2.31.patch
86 eautoreconf
87 }
88
89 src_configure() {
90 econf $(use_enable nls)
91 }
92
93 pkg_postinst() {
94 fdo-mime_desktop_database_update
95 }
96
97 pkg_postrm() {
98 fdo-mime_desktop_database_update
99 }