diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-10 03:15:15 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-10 03:15:15 +0000 |
commit | 67d599cee018dfda4d218d83b9a059f4da712166 (patch) | |
tree | c15438c828f2b882103ea1aab93d07b26deb210d /app-misc | |
parent | Version bump for beta channel release. (diff) | |
download | gentoo-2-67d599cee018dfda4d218d83b9a059f4da712166.tar.gz gentoo-2-67d599cee018dfda4d218d83b9a059f4da712166.tar.bz2 gentoo-2-67d599cee018dfda4d218d83b9a059f4da712166.zip |
Zero-change revbump to mask applet USE flag on gnote-0.8.2 to allow stabilization (bug #414983).
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/gnote/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/gnote/gnote-0.8.2-r10.ebuild | 48 |
2 files changed, 56 insertions, 1 deletions
diff --git a/app-misc/gnote/ChangeLog b/app-misc/gnote/ChangeLog index 708995adfbb5..91534902eca5 100644 --- a/app-misc/gnote/ChangeLog +++ b/app-misc/gnote/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-misc/gnote # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.16 2012/05/03 19:41:32 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.17 2012/05/10 03:15:15 tetromino Exp $ + +*gnote-0.8.2-r10 (10 May 2012) + + 10 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +gnote-0.8.2-r10.ebuild: + Zero-change revbump to mask applet USE flag on gnote-0.8.2 to allow + stabilization (bug #414983). 03 May 2012; Jeff Horelick <jdhore@gentoo.org> gnote-0.7.4.ebuild, gnote-0.8.2.ebuild, gnote-0.8.3.ebuild: diff --git a/app-misc/gnote/gnote-0.8.2-r10.ebuild b/app-misc/gnote/gnote-0.8.2-r10.ebuild new file mode 100644 index 000000000000..646d4ff69cd9 --- /dev/null +++ b/app-misc/gnote/gnote-0.8.2-r10.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.8.2-r10.ebuild,v 1.1 2012/05/10 03:15:15 tetromino Exp $ + +EAPI="4" +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +DESCRIPTION="Desktop note-taking application" +HOMEPAGE="http://live.gnome.org/Gnote" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="applet debug" + +RDEPEND=">=x11-libs/gtk+-3.0:3 + >=dev-cpp/glibmm-2.28:2 + >=dev-cpp/gtkmm-3.0:3.0 + >=dev-libs/libxml2-2:2 + dev-libs/libxslt + >=dev-libs/libpcre-7.8:3[cxx] + >=dev-libs/boost-1.34 + >=sys-apps/util-linux-2.16 + applet? ( >=gnome-base/gnome-panel-3 )" +DEPEND="${DEPEND} + virtual/pkgconfig + >=dev-util/intltool-0.35.0 + app-text/gnome-doc-utils + app-text/docbook-xml-dtd:4.1.2" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README TODO" + G2CONF="${G2CONF} + --disable-static + --disable-schemas-compile + $(use_enable applet) + $(use_enable debug)" +} + +src_prepare() { + gnome2_src_prepare + + # Do not set idiotic defines in a released tarball, bug #311979 + sed 's/-DG.*_DISABLE_DEPRECATED//g' -i libtomboy/Makefile.* || + die "sed failed" +} |