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-text/xfbib: ChangeLog xfbib-0.0.2-r1.ebuild
Date: Fri, 30 Nov 2012 23:43:56
Message-Id: 20121130234345.4E28520C9F@flycatcher.gentoo.org
1 ssuominen 12/11/30 23:43:45
2
3 Modified: ChangeLog
4 Added: xfbib-0.0.2-r1.ebuild
5 Log:
6 Port from libxfcegui4 to libxfce4ui. Validate xfbib.desktop using desktop-file-utils.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.5 app-text/xfbib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xfbib/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xfbib/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xfbib/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/xfbib/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 15 Nov 2012 19:45:56 -0000 1.4
24 +++ ChangeLog 30 Nov 2012 23:43:45 -0000 1.5
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-text/xfbib
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/xfbib/ChangeLog,v 1.4 2012/11/15 19:45:56 nativemad Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/xfbib/ChangeLog,v 1.5 2012/11/30 23:43:45 ssuominen Exp $
30 +
31 +*xfbib-0.0.2-r1 (30 Nov 2012)
32 +
33 + 30 Nov 2012; Samuli Suominen <ssuominen@g.o> +xfbib-0.0.2-r1.ebuild,
34 + +files/xfbib-0.0.2-libxfce4ui.patch, +files/xfbib-0.0.2-validate.patch:
35 + Port from libxfcegui4 to libxfce4ui. Validate xfbib.desktop using
36 + desktop-file-utils.
37
38 16 Nov 2012; Andreas Schuerch <nativemad@g.o> xfbib-0.0.2.ebuild:
39 x86 stable, see bug 429484
40
41
42
43 1.1 app-text/xfbib/xfbib-0.0.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xfbib/xfbib-0.0.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xfbib/xfbib-0.0.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xfbib-0.0.2-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/app-text/xfbib/xfbib-0.0.2-r1.ebuild,v 1.1 2012/11/30 23:43:45 ssuominen Exp $
53
54 EAPI=5
55 inherit xfconf
56
57 DESCRIPTION="a lightweight BibTeX editor"
58 HOMEPAGE="http://goodies.xfce.org/projects/applications/xfbib"
59 SRC_URI="http://goodies.xfce.org/releases/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND=">=dev-libs/glib-2.12
67 >=x11-libs/gtk+-2.10:2
68 >=xfce-base/libxfce4ui-4.8
69 >=xfce-base/libxfce4util-4.8"
70 DEPEND="${RDEPEND}
71 dev-util/intltool
72 sys-devel/gettext
73 virtual/pkgconfig"
74
75 pkg_setup() {
76 PATCHES=(
77 "${FILESDIR}"/${P}-validate.patch
78 "${FILESDIR}"/${P}-libxfce4ui.patch
79 )
80
81 DOCS=( AUTHORS ChangeLog NEWS README TODO )
82 }
83
84 src_prepare() {
85 # This is to prevent eautoreconfigure:
86 sed -i -e 's:libxfcegui4-1.0:libxfce4ui-1:' configure || die
87 sed -i -e 's:$(LIBXFCE4UTIL_CFLAGS):& $(LIBXFCEGUI4_CFLAGS):' src/Makefile.in || die
88
89 xfconf_src_prepare
90 }