diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-05-13 17:43:24 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-05-13 17:43:24 +0000 |
commit | 61edaecbd56d67b22e8bd12d70e699e1c66aa5b0 (patch) | |
tree | e0745aae4c9f21277618c9da2e4a7d96523ee5a6 /app-misc | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-61edaecbd56d67b22e8bd12d70e699e1c66aa5b0.tar.gz gentoo-2-61edaecbd56d67b22e8bd12d70e699e1c66aa5b0.tar.bz2 gentoo-2-61edaecbd56d67b22e8bd12d70e699e1c66aa5b0.zip |
Version bump
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/gnote/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/gnote/gnote-3.8.1.ebuild | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/app-misc/gnote/ChangeLog b/app-misc/gnote/ChangeLog index 947dbc3de45b..9f47be74c9a4 100644 --- a/app-misc/gnote/ChangeLog +++ b/app-misc/gnote/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/gnote # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.31 2013/04/07 21:40:18 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.32 2013/05/13 17:43:24 pacho Exp $ + +*gnote-3.8.1 (13 May 2013) + + 13 May 2013; Pacho Ramos <pacho@gentoo.org> +gnote-3.8.1.ebuild: + Version bump 07 Apr 2013; Gilles Dartiguelongue <eva@gentoo.org> gnote-3.8.0.ebuild: Apply team policy. diff --git a/app-misc/gnote/gnote-3.8.1.ebuild b/app-misc/gnote/gnote-3.8.1.ebuild new file mode 100644 index 000000000000..773815f5267f --- /dev/null +++ b/app-misc/gnote/gnote-3.8.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-3.8.1.ebuild,v 1.1 2013/05/13 17:43:24 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="Desktop note-taking application" +HOMEPAGE="http://live.gnome.org/Gnote" + +LICENSE="GPL-3+ FDL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +# Automagic glib-2.32 dep +COMMON_DEPEND=" + >=app-crypt/libsecret-0.8 + >=app-text/gtkspell-3.0:3 + >=dev-cpp/glibmm-2.28:2 + >=dev-cpp/gtkmm-3.6:3.0 + >=dev-libs/boost-1.34 + >=dev-libs/glib-2.32:2 + >=dev-libs/libxml2-2:2 + dev-libs/libxslt + >=sys-apps/util-linux-2.16:= + >=x11-libs/gtk+-3.6:3 + x11-libs/libX11 +" +RDEPEND="${COMMON_DEPEND} + gnome-base/gsettings-desktop-schemas +" +DEPEND="${DEPEND} + app-text/docbook-xml-dtd:4.1.2 + >=dev-util/intltool-0.35.0 + virtual/pkgconfig +" + +src_prepare() { + # Do not alter CFLAGS + sed 's/-DDEBUG -g/-DDEBUG/' -i configure.ac configure || die + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_enable debug) \ + ITSTOOL=$(type -P true) +} |