Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/gnote: gnote-3.10.3.ebuild ChangeLog gnote-3.10.1.ebuild
Date: Thu, 27 Feb 2014 20:59:43
Message-Id: 20140227205937.B87132004B@flycatcher.gentoo.org
1 pacho 14/02/27 20:59:37
2
3 Modified: ChangeLog
4 Added: gnote-3.10.3.ebuild
5 Removed: gnote-3.10.1.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.42 app-misc/gnote/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/gnote/ChangeLog?rev=1.42&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/gnote/ChangeLog?rev=1.42&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/gnote/ChangeLog?r1=1.41&r2=1.42
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v
21 retrieving revision 1.41
22 retrieving revision 1.42
23 diff -u -r1.41 -r1.42
24 --- ChangeLog 22 Feb 2014 21:00:11 -0000 1.41
25 +++ ChangeLog 27 Feb 2014 20:59:37 -0000 1.42
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-misc/gnote
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.41 2014/02/22 21:00:11 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.42 2014/02/27 20:59:37 pacho Exp $
31 +
32 +*gnote-3.10.3 (27 Feb 2014)
33 +
34 + 27 Feb 2014; Pacho Ramos <pacho@g.o> +gnote-3.10.3.ebuild,
35 + -gnote-3.10.1.ebuild:
36 + Version bump, drop old
37
38 22 Feb 2014; Pacho Ramos <pacho@g.o> gnote-3.10.2.ebuild:
39 Fix wrong commit, bug 502160
40
41
42
43 1.1 app-misc/gnote/gnote-3.10.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/gnote/gnote-3.10.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/gnote/gnote-3.10.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gnote-3.10.3.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-3.10.3.ebuild,v 1.1 2014/02/27 20:59:37 pacho Exp $
53
54 EAPI="5"
55 GCONF_DEBUG="no"
56
57 inherit gnome2 readme.gentoo
58
59 DESCRIPTION="Desktop note-taking application"
60 HOMEPAGE="https://wiki.gnome.org/Apps/Gnote"
61
62 LICENSE="GPL-3+ FDL-1.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug +X"
66
67 # Automagic glib-2.32 dep
68 COMMON_DEPEND="
69 >=app-crypt/libsecret-0.8
70 >=app-text/gtkspell-3.0:3
71 >=dev-cpp/glibmm-2.32:2
72 >=dev-cpp/gtkmm-3.6:3.0
73 >=dev-libs/boost-1.34
74 >=dev-libs/glib-2.32:2
75 >=dev-libs/libxml2-2:2
76 dev-libs/libxslt
77 >=sys-apps/util-linux-2.16:=
78 >=x11-libs/gtk+-3.6:3
79 X? ( x11-libs/libX11 )
80 "
81 RDEPEND="${COMMON_DEPEND}
82 gnome-base/gsettings-desktop-schemas
83 "
84 DEPEND="${DEPEND}
85 app-text/docbook-xml-dtd:4.1.2
86 dev-util/desktop-file-utils
87 >=dev-util/intltool-0.35.0
88 virtual/pkgconfig
89 "
90
91 src_prepare() {
92 # Do not alter CFLAGS
93 sed 's/-DDEBUG -g/-DDEBUG/' -i configure.ac configure || die
94 gnome2_src_prepare
95
96 if has_version net-fs/wdfs; then
97 DOC_CONTENTS="You have net-fs/wdfs installed. app-misc/gnote will use it to
98 synchronize notes."
99 else
100 DOC_CONTENTS="Gnote can use net-fs/wdfs to synchronize notes.
101 If you want to use that functionality just emerge net-fs/wdfs.
102 Gnote will automatically detect that you did and let you use it."
103 fi
104 }
105
106 src_configure() {
107 gnome2_src_configure \
108 --disable-static \
109 $(use_enable debug) \
110 $(use_with X x11-support) \
111 ITSTOOL=$(type -P true)
112 }
113
114 src_install() {
115 gnome2_src_install
116 readme.gentoo_create_doc
117 }
118
119 pkg_postinst() {
120 gnome2_pkg_postinst
121 readme.gentoo_print_elog
122 }