summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2012-01-21 13:13:14 +0000
committerPacho Ramos <pacho@gentoo.org>2012-01-21 13:13:14 +0000
commitad83f527ea8f5f35ede4866a0c30f17e5dfb6d0d (patch)
tree3637d762353bb73b31ba80bd9cdb4977bf4c24e2 /app-misc/tasque
parentFixed configure failure (follow upstream in renaming --enablble-user-pic to -... (diff)
downloadgentoo-2-ad83f527ea8f5f35ede4866a0c30f17e5dfb6d0d.tar.gz
gentoo-2-ad83f527ea8f5f35ede4866a0c30f17e5dfb6d0d.tar.bz2
gentoo-2-ad83f527ea8f5f35ede4866a0c30f17e5dfb6d0d.zip
Drop old.
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/tasque')
-rw-r--r--app-misc/tasque/ChangeLog7
-rw-r--r--app-misc/tasque/tasque-0.1.8.ebuild67
2 files changed, 5 insertions, 69 deletions
diff --git a/app-misc/tasque/ChangeLog b/app-misc/tasque/ChangeLog
index 8f58120ba9aa..3f26632692da 100644
--- a/app-misc/tasque/ChangeLog
+++ b/app-misc/tasque/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/tasque
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.6 2011/05/11 19:24:16 angelos Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.7 2012/01/21 13:13:14 pacho Exp $
+
+ 21 Jan 2012; Pacho Ramos <pacho@gentoo.org> -tasque-0.1.8.ebuild:
+ Drop old.
11 May 2011; Christoph Mende <angelos@gentoo.org> tasque-0.1.9.ebuild:
Stable on amd64 wrt bug #359651
diff --git a/app-misc/tasque/tasque-0.1.8.ebuild b/app-misc/tasque/tasque-0.1.8.ebuild
deleted file mode 100644
index e1ef7aacf409..000000000000
--- a/app-misc/tasque/tasque-0.1.8.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.8.ebuild,v 1.5 2011/03/12 11:53:20 angelos Exp $
-
-EAPI=2
-
-inherit gnome.org mono autotools
-
-DESCRIPTION="Tasky is a simple task management app (TODO list) for the Linux Desktop"
-HOMEPAGE="http://live.gnome.org/Tasque"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="+rememberthemilk eds +sqlite hiveminder debug"
-
-RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5
- >=dev-dotnet/gnome-sharp-2.24.0
- >=dev-dotnet/notify-sharp-0.4.0_pre20080912
- >=dev-dotnet/ndesk-dbus-0.6
- >=dev-dotnet/ndesk-dbus-glib-0.4
- eds? ( >=dev-dotnet/evolution-sharp-0.18.1 )
- sqlite? ( dev-db/sqlite:3 )
- "
-
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- BACKEND=false
- for usef in eds sqlite hiveminder rememberthemilk
- do
- use $usef && BACKEND=true
- done
- if [[ "${BACKEND}" != "true" ]]
- then
- eerror "You must select one of the following backends by enabling their useflag:"
- eerror "eds ( integrates with the evolution schedule )"
- eerror "sqlite ( uses a local, file-backed database to keep track of your TODO list )"
- eerror "rememberthemilk ( integrates with www.rememberthemilk.com )"
- eerror "hiveminder ( integrates with www.hiveminder.com )"
- die "Please select a backend"
- fi
-}
-
-src_prepare() {
- #http://bugzilla.gnome.org/show_bug.cgi?id=566355
- epatch "${FILESDIR}"/${P}-debug-fixup.patch
- eautoreconf
-}
-
-src_configure() {
- #http://bugzilla.gnome.org/show_bug.cgi?id=568910
- export GTK_DOTNET_20_LIBS=" " \
- GTK_DOTNET_20_CFLAGS=" "
- econf --disable-backend-icecore \
- --enable-backend-rtm \
- $(use_enable sqlite backend-sqlite) \
- $(use_enable eds backend-eds) \
- $(use_enable hiveminder backend-hiveminder) \
- $(use_enable debug)
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "emake failed"
- dodoc NEWS TODO README AUTHORS || die "docs installation failed"
- mv_command="cp -pPR" mono_multilib_comply
-}