diff options
author | Jim Ramsay <lack@gentoo.org> | 2007-01-06 21:51:07 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2007-01-06 21:51:07 +0000 |
commit | 3ff4e0901cb0fbebdd2618e6a4eb0de70a70f9d4 (patch) | |
tree | c04d9702ffda52fd740cc5a0f86694842837f429 /rox-extra | |
parent | Some cleanups. Fixed bug #139878. (diff) | |
download | gentoo-2-3ff4e0901cb0fbebdd2618e6a4eb0de70a70f9d4.tar.gz gentoo-2-3ff4e0901cb0fbebdd2618e6a4eb0de70a70f9d4.tar.bz2 gentoo-2-3ff4e0901cb0fbebdd2618e6a4eb0de70a70f9d4.zip |
Version bump - Memo 2.0 is released
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'rox-extra')
-rw-r--r-- | rox-extra/memo/ChangeLog | 9 | ||||
-rw-r--r-- | rox-extra/memo/files/digest-memo-2.0 | 3 | ||||
-rw-r--r-- | rox-extra/memo/memo-2.0.ebuild | 34 |
3 files changed, 44 insertions, 2 deletions
diff --git a/rox-extra/memo/ChangeLog b/rox-extra/memo/ChangeLog index 28c998357464..1e17a6513d23 100644 --- a/rox-extra/memo/ChangeLog +++ b/rox-extra/memo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for rox-extra/memo -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/rox-extra/memo/ChangeLog,v 1.11 2006/12/04 16:25:33 lack Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/rox-extra/memo/ChangeLog,v 1.12 2007/01/06 21:51:07 lack Exp $ + +*memo-2.0 (06 Jan 2007) + + 06 Jan 2007; Jim Ramsay <lack@gentoo.org> +memo-2.0.ebuild: + Version bump - Memo 2.0 is released 04 Dec 2006; Jim Ramsay <lack@gentoo.org> memo-1.9.7.ebuild: Fixed up dbus dependencies diff --git a/rox-extra/memo/files/digest-memo-2.0 b/rox-extra/memo/files/digest-memo-2.0 new file mode 100644 index 000000000000..988169ef1648 --- /dev/null +++ b/rox-extra/memo/files/digest-memo-2.0 @@ -0,0 +1,3 @@ +MD5 2cb1773bdc2ad2988b44c9ad5436332a memo-2.0.tar.bz2 39770 +RMD160 cec45c146766e7b9454a0f8cf14252bd2a57bbab memo-2.0.tar.bz2 39770 +SHA256 bd1cce9618fed4d1aef9f61ab403a6484b68e887c8de4870e6d4f67dc4e9f3cb memo-2.0.tar.bz2 39770 diff --git a/rox-extra/memo/memo-2.0.ebuild b/rox-extra/memo/memo-2.0.ebuild new file mode 100644 index 000000000000..270005cf13e8 --- /dev/null +++ b/rox-extra/memo/memo-2.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/rox-extra/memo/memo-2.0.ebuild,v 1.1 2007/01/06 21:51:07 lack Exp $ + +ROX_LIB_VER=1.9.8 +inherit rox + +MY_PN="Memo" +DESCRIPTION="Memo - Memo is a simple alarm clock and clock applet for the ROX Desktop." +HOMEPAGE="http://rox.sourceforge.net/phpwiki/index.php/Memo" +SRC_URI="mirror://sourceforge/rox/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="libnotify" + +RDEPEND="libnotify? ( + || ( >=dev-python/dbus-python-0.71 + ( >=sys-apps/dbus-0.60 <sys-apps/dbus-0.90 ) ) + x11-misc/notification-daemon )" + +APPNAME=${MY_PN} + +pkg_setup() { + if ! has_version dev-python/dbus-python && \ + ! built_with_use sys-apps/dbus python + then + einfo "${APPNAME} requires dbus to be built with python support." + einfo "Please rebuild dbus with USE=\"python\"." + die "python dbus modules missing" + fi +} + |