diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-11-23 17:11:43 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-11-23 17:11:43 +0000 |
commit | f5d2882fad37fbb42edfdf8527c6355fc26cc665 (patch) | |
tree | 757c3c9ad3664809bd8017a9b0615704ebc6d0d7 /gnome-extra/tasks | |
parent | Masking pbins flag used by paludis. It requires libarchive which isn't keyworded (diff) | |
download | gentoo-2-f5d2882fad37fbb42edfdf8527c6355fc26cc665.tar.gz gentoo-2-f5d2882fad37fbb42edfdf8527c6355fc26cc665.tar.bz2 gentoo-2-f5d2882fad37fbb42edfdf8527c6355fc26cc665.zip |
Version bump. Fix build with various gtk+ revisions, CLI enhancements, better handling of non-ASCII task notes and more.
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/tasks')
-rw-r--r-- | gnome-extra/tasks/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/tasks/tasks-0.18.ebuild | 36 |
2 files changed, 43 insertions, 1 deletions
diff --git a/gnome-extra/tasks/ChangeLog b/gnome-extra/tasks/ChangeLog index eb80130b4039..f69020e58be7 100644 --- a/gnome-extra/tasks/ChangeLog +++ b/gnome-extra/tasks/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/tasks # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/tasks/ChangeLog,v 1.7 2010/10/08 23:26:13 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/tasks/ChangeLog,v 1.8 2010/11/23 17:11:43 eva Exp $ + +*tasks-0.18 (23 Nov 2010) + + 23 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org> +tasks-0.18.ebuild: + Version bump. Fix build with various gtk+ revisions, CLI enhancements, better + handling of non-ASCII task notes and more. 08 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org> -tasks-0.14.ebuild: Clean up old revision. diff --git a/gnome-extra/tasks/tasks-0.18.ebuild b/gnome-extra/tasks/tasks-0.18.ebuild new file mode 100644 index 000000000000..300f7fcc65c4 --- /dev/null +++ b/gnome-extra/tasks/tasks-0.18.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/tasks/tasks-0.18.ebuild,v 1.1 2010/11/23 17:11:43 eva Exp $ + +EAPI="3" +GCONF_DEBUG="no" + +inherit autotools eutils gnome2 + +DESCRIPTION="A small, lightweight to-do list for Gnome" +HOMEPAGE="http://pimlico-project.org/tasks.html" +SRC_URI="http://pimlico-project.org/sources/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=gnome-extra/evolution-data-server-1.8 + >=x11-libs/gtk+-2.16:2 + >=dev-libs/glib-2.14:2 + >=dev-libs/libunique-1" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.33 + sys-devel/gettext" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + G2CONF="${G2CONF} --with-unique --enable-gtk" +} + +src_prepare() { + epatch "${FILESDIR}/${PN}-0.16-asneeded.patch" + eautoreconf +} |