summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2009-05-31 17:54:58 +0000
committerTorsten Veller <tove@gentoo.org>2009-05-31 17:54:58 +0000
commitf745a400ca2aa34bc6d8113afe9bd1f1fd2c9e52 (patch)
tree7f9ffcc106c779dff8c6ef44e8fe309f20b3ea7a /x11-misc/remind
parentDo not install 3 different documentation directories, bug #248127. (diff)
downloadgentoo-2-f745a400ca2aa34bc6d8113afe9bd1f1fd2c9e52.tar.gz
gentoo-2-f745a400ca2aa34bc6d8113afe9bd1f1fd2c9e52.tar.bz2
gentoo-2-f745a400ca2aa34bc6d8113afe9bd1f1fd2c9e52.zip
Version bump
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'x11-misc/remind')
-rw-r--r--x11-misc/remind/ChangeLog9
-rw-r--r--x11-misc/remind/remind-03.01.07.ebuild42
2 files changed, 49 insertions, 2 deletions
diff --git a/x11-misc/remind/ChangeLog b/x11-misc/remind/ChangeLog
index 6b897d83164d..859473329ec4 100644
--- a/x11-misc/remind/ChangeLog
+++ b/x11-misc/remind/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/remind
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/ChangeLog,v 1.41 2009/03/21 21:51:17 nelchael Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/ChangeLog,v 1.42 2009/05/31 17:54:58 tove Exp $
+
+*remind-03.01.07 (31 May 2009)
+
+ 31 May 2009; Torsten Veller <tove@gentoo.org> +remind-03.01.07.ebuild:
+ Version bump
21 Mar 2009; Krzysiek Pawlik <nelchael@gentoo.org>
-remind-03.01.05.ebuild:
diff --git a/x11-misc/remind/remind-03.01.07.ebuild b/x11-misc/remind/remind-03.01.07.ebuild
new file mode 100644
index 000000000000..72c224a649d1
--- /dev/null
+++ b/x11-misc/remind/remind-03.01.07.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/remind-03.01.07.ebuild,v 1.1 2009/05/31 17:54:58 tove Exp $
+
+MY_P=${P/_beta/-BETA-}
+S=${WORKDIR}/${MY_P}
+
+DESCRIPTION="Ridiculously functional reminder program"
+HOMEPAGE="http://www.roaringpenguin.com/products/remind"
+SRC_URI="http://www.roaringpenguin.com/files/download/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+IUSE="tk"
+
+RDEPEND="tk? ( dev-lang/tk dev-tcltk/tcllib )"
+
+src_unpack() {
+ unpack ${A}
+ sed -i 's:$(MAKE) install:&-nostripped:' "${S}"/Makefile || die
+}
+
+src_test() {
+ if [[ $UID -eq 0 ]] ; then
+ ewarn "Testing fails if run as root. Skipping tests."
+ return
+ fi
+ make test || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+ dobin www/rem2html || die "dobin failed"
+
+ dodoc docs/WHATSNEW examples/defs.rem www/README.* || die "dodoc failed"
+
+ if ! use tk ; then
+ rm "${D}"/usr/bin/tkremind "${D}"/usr/share/man/man1/tkremind* \
+ "${D}"/usr/bin/cm2rem* "${D}"/usr/share/man/man1/cm2rem*
+ fi
+}