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: metadata.xml ChangeLog gnote-0.6.1.ebuild
Date: Sun, 02 Aug 2009 22:42:08
Message-Id: E1MXjkk-0002tR-6p@stork.gentoo.org
1 eva 09/08/02 22:42:06
2
3 Added: metadata.xml ChangeLog gnote-0.6.1.ebuild
4 Log:
5 Initial ebuild by Gilles Dartiguelongue <eva@g.o>, copied and bumped from gnome overlay, closes bug #268015.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-misc/gnote/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>gnome</herd>
20 <maintainer>
21 <email>eva@g.o</email>
22 <name>Gilles Dartiguelongue</name>
23 </maintainer>
24 <use>
25 <flag name="applet">Enable gnote applet for <pkg>gnome-base/gnome-panel</pkg></flag>
26 </use>
27 </pkgmetadata>
28
29
30
31
32 1.1 app-misc/gnote/ChangeLog
33
34 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/ChangeLog?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/ChangeLog?rev=1.1&content-type=text/plain
36
37 Index: ChangeLog
38 ===================================================================
39 # ChangeLog for app-misc/gnote
40 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
41 # $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.1 2009/08/02 22:42:06 eva Exp $
42
43 *gnote-0.6.1 (02 Aug 2009)
44
45 02 Aug 2009; Gilles Dartiguelongue <eva@g.o> +gnote-0.6.1.ebuild,
46 +files/gnote-0.6.1-dbus-switch.patch, +metadata.xml:
47 Initial ebuild by Gilles Dartiguelongue <eva@g.o>, copied and bumped
48 from gnome overlay, closes bug #268015.
49
50
51
52
53 1.1 app-misc/gnote/gnote-0.6.1.ebuild
54
55 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/gnote-0.6.1.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/gnote/gnote-0.6.1.ebuild?rev=1.1&content-type=text/plain
57
58 Index: gnote-0.6.1.ebuild
59 ===================================================================
60 # Copyright 1999-2009 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.6.1.ebuild,v 1.1 2009/08/02 22:42:06 eva Exp $
63
64 EAPI="2"
65
66 inherit autotools eutils gnome2
67
68 DESCRIPTION="Desktop note-taking application"
69 HOMEPAGE="http://www.gnome.org/"
70
71 LICENSE="GPL-3"
72 SLOT="0"
73 KEYWORDS="~amd64 ~x86"
74 IUSE="applet debug" # dbus
75
76 RDEPEND=">=x11-libs/gtk+-2.14
77 >=dev-cpp/glibmm-2
78 >=dev-cpp/gtkmm-2.12
79 >=dev-libs/libxml2-2
80 dev-libs/libxslt
81 >=gnome-base/gconf-2
82 >=dev-libs/libpcre-7.8[cxx]
83 >=app-text/gtkspell-2.0.9
84 >=dev-libs/boost-1.34
85 sys-libs/e2fsprogs-libs
86 >=gnome-base/gnome-panel-2
87 applet? ( >=dev-cpp/libpanelappletmm-2.26 )"
88 # Build with dbus is currently not implemented
89 # dbus? ( >=dev-libs/dbus-glib-0.70 )"
90 DEPEND="${DEPEND}
91 dev-util/pkgconfig
92 >=dev-util/intltool-0.35.0
93 app-text/gnome-doc-utils"
94
95 DOCS="AUTHORS ChangeLog NEWS README TODO"
96
97 src_prepare() {
98 gnome2_src_prepare
99
100 # Fix dbus configure switch, upstream bug #590560
101 epatch "${FILESDIR}/${P}-dbus-switch.patch"
102
103 intltoolize --force --copy --automake || die "intltoolize failed"
104 eautoreconf
105 }
106
107 pkg_setup() {
108 G2CONF="${G2CONF}
109 --disable-dbus
110 --disable-static
111 $(use_enable applet)
112 $(use_enable debug)"
113 }