diff options
author | Torsten Veller <tove@gentoo.org> | 2008-02-04 13:07:51 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-02-04 13:07:51 +0000 |
commit | c9f4339db54b440d0c53a394d7641aad85ed2e48 (patch) | |
tree | 1f2b6757825b48784d719f28257cb6eeebb3382e /x11-misc | |
parent | Bump snapshot again, last one was missing a header (diff) | |
download | gentoo-2-c9f4339db54b440d0c53a394d7641aad85ed2e48.tar.gz gentoo-2-c9f4339db54b440d0c53a394d7641aad85ed2e48.tar.bz2 gentoo-2-c9f4339db54b440d0c53a394d7641aad85ed2e48.zip |
Version bump
(Portage version: 2.1.4.1)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/remind/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/remind/remind-03.01.04.ebuild | 42 |
2 files changed, 49 insertions, 2 deletions
diff --git a/x11-misc/remind/ChangeLog b/x11-misc/remind/ChangeLog index 9c8aa7bbc9dc..ab9e0cf35c18 100644 --- a/x11-misc/remind/ChangeLog +++ b/x11-misc/remind/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/remind -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/ChangeLog,v 1.23 2007/10/17 15:25:03 tove Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/ChangeLog,v 1.24 2008/02/04 13:07:51 tove Exp $ + +*remind-03.01.04 (04 Feb 2008) + + 04 Feb 2008; Torsten Veller <tove@gentoo.org> +remind-03.01.04.ebuild: + Version bump. *remind-03.01.03 (17 Oct 2007) diff --git a/x11-misc/remind/remind-03.01.04.ebuild b/x11-misc/remind/remind-03.01.04.ebuild new file mode 100644 index 000000000000..d750857c6e56 --- /dev/null +++ b/x11-misc/remind/remind-03.01.04.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/remind-03.01.04.ebuild,v 1.1 2008/02/04 13:07:51 tove Exp $ + +MY_P=${P/_beta/-BETA-} + +DESCRIPTION="Ridiculously functional reminder program" +HOMEPAGE="http://www.roaringpenguin.com/en/penguin/openSourceProducts/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 )" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + sed -i 's:$(MAKE) install:&-nostripped:' "${S}"/Makefile || die +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dobin www/rem2html || die "dobin failed" + + dodoc README COPYRIGHT WINDOWS 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 +} + +pkg_postinst() { + elog "Some changes from 03.00.24:" + elog "A reminders filename must be supplied to 'remind'. It is no longer" + elog "optional. You can use 'rem' instead." + elog "The environment variable that may contain your default reminders" + elog "filename was renamed from DOT_REMINDERS to DOTREMINDERS." +} |