Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/gnote: ChangeLog gnote-0.7.2.ebuild
Date: Wed, 31 Mar 2010 22:40:02
Message-Id: E1Nx6Zs-0007Ly-H7@stork.gentoo.org
1 eva 10/03/31 22:40:00
2
3 Modified: ChangeLog
4 Added: gnote-0.7.2.ebuild
5 Log:
6 Version bump. Fix build with recent gtk+, bug #311979. Updated translations, fix a linking issue.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 app-misc/gnote/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 23 Feb 2010 19:37:22 -0000 1.6
23 +++ ChangeLog 31 Mar 2010 22:40:00 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-misc/gnote
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.6 2010/02/23 19:37:22 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.7 2010/03/31 22:40:00 eva Exp $
29 +
30 +*gnote-0.7.2 (31 Mar 2010)
31 +
32 + 31 Mar 2010; Gilles Dartiguelongue <eva@g.o> +gnote-0.7.2.ebuild:
33 + Version bump. Fix build with recent gtk+, bug #311979. Updated
34 + translations, fix a linking issue.
35
36 23 Feb 2010; Gilles Dartiguelongue <eva@g.o> -gnote-0.6.2.ebuild,
37 gnote-0.6.3.ebuild, gnote-0.7.1.ebuild:
38
39
40
41 1.1 app-misc/gnote/gnote-0.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/gnote-0.7.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/gnote-0.7.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnote-0.7.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.7.2.ebuild,v 1.1 2010/03/31 22:40:00 eva Exp $
51
52 EAPI="2"
53
54 inherit gnome2
55
56 DESCRIPTION="Desktop note-taking application"
57 HOMEPAGE="http://www.gnome.org/"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="applet debug" # dbus
63
64 RDEPEND=">=x11-libs/gtk+-2.14
65 >=dev-cpp/glibmm-2
66 >=dev-cpp/gtkmm-2.12
67 >=dev-libs/libxml2-2
68 dev-libs/libxslt
69 >=gnome-base/gconf-2
70 >=dev-libs/libpcre-7.8[cxx]
71 >=app-text/gtkspell-2.0.9
72 >=dev-libs/boost-1.34
73 sys-libs/e2fsprogs-libs
74 applet? (
75 >=gnome-base/gnome-panel-2
76 >=dev-cpp/libpanelappletmm-2.26 )"
77 # Build with dbus is currently not implemented
78 # dbus? ( >=dev-libs/dbus-glib-0.70 )"
79 DEPEND="${DEPEND}
80 dev-util/pkgconfig
81 >=dev-util/intltool-0.35.0
82 app-text/gnome-doc-utils
83 app-text/docbook-xml-dtd:4.1.2"
84
85 DOCS="AUTHORS ChangeLog NEWS README TODO"
86
87 pkg_setup() {
88 G2CONF="${G2CONF}
89 --disable-dbus
90 --disable-static
91 $(use_enable applet)
92 $(use_enable debug)"
93 }
94
95 src_prepare() {
96 gnome2_src_prepare
97
98 # Do not set idiotic defines in a released tarball, bug #311979
99 sed 's/-DG.*_DISABLE_DEPRECATED//g' -i libtomboy/Makefile.am \
100 libtomboy/Makefile.in || die "sed failed"
101 }