summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Smith <smithj@gentoo.org>2005-07-01 22:03:53 +0000
committerJonathan Smith <smithj@gentoo.org>2005-07-01 22:03:53 +0000
commit060316e622872e354b7aae9dd26c46e12deca310 (patch)
tree9ee2922b3e65111d6ddb132e4e9f54d8753ca0a5
parent2.10.1_pre0: More specific versions in dependencies (bug #92335) (diff)
downloadgentoo-2-060316e622872e354b7aae9dd26c46e12deca310.tar.gz
gentoo-2-060316e622872e354b7aae9dd26c46e12deca310.tar.bz2
gentoo-2-060316e622872e354b7aae9dd26c46e12deca310.zip
#97620: actually instlls all the necessary files and massive ebuild cleanup
(Portage version: 2.0.51.22-r1)
-rw-r--r--x11-misc/remind/ChangeLog8
-rw-r--r--x11-misc/remind/Manifest14
-rw-r--r--x11-misc/remind/files/digest-remind-03.00.23-r11
-rw-r--r--x11-misc/remind/remind-03.00.23-r1.ebuild26
4 files changed, 37 insertions, 12 deletions
diff --git a/x11-misc/remind/ChangeLog b/x11-misc/remind/ChangeLog
index 381e63dab653..efa087bbf242 100644
--- a/x11-misc/remind/ChangeLog
+++ b/x11-misc/remind/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/remind
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/ChangeLog,v 1.6 2005/06/15 16:54:50 smithj Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/ChangeLog,v 1.7 2005/07/01 22:03:53 smithj Exp $
+
+*remind-03.00.23-r1 (01 Jul 2005)
+
+ 01 Jul 2005; Jonathan Smith <smithj@gentoo.org>
+ +remind-03.00.23-r1.ebuild:
+ #97620: actually instlls all the necessary files and massive ebuild cleanup
*remind-03.00.23 (15 Jun 2005)
diff --git a/x11-misc/remind/Manifest b/x11-misc/remind/Manifest
index 9b312cba38e8..7bd2c14c94be 100644
--- a/x11-misc/remind/Manifest
+++ b/x11-misc/remind/Manifest
@@ -1,16 +1,8 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-MD5 e3f33b81d223f4e578298a666e2d6c01 ChangeLog 762
+MD5 4424718c7bf466fc69567ddb7918ae17 ChangeLog 956
MD5 854ad93ffa90b305b1f1f87592698ed8 metadata.xml 167
MD5 0b104cf1f121e1e9e3b6e96374cb8ca6 remind-03.00.22.ebuild 556
MD5 3b99c5794840e2a06cc06c11925a652d remind-03.00.23.ebuild 562
+MD5 34886e4bbe482fe7d44600d3ed75d672 remind-03.00.23-r1.ebuild 771
MD5 375c9caf7bde9ce5f35f13bdeda4ca17 files/digest-remind-03.00.22 67
MD5 e303deb68b9bb5fad91b5fce2901bf56 files/digest-remind-03.00.23 67
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.1 (GNU/Linux)
-
-iD8DBQFCsF2Wl5AvwDPiUowRAvvRAJ9QJZTnstC6+KLGLWvUMN4T0X1xpwCfT8dk
-/cx65oIEBFsNn//cb30ygEE=
-=jqUa
------END PGP SIGNATURE-----
+MD5 e303deb68b9bb5fad91b5fce2901bf56 files/digest-remind-03.00.23-r1 67
diff --git a/x11-misc/remind/files/digest-remind-03.00.23-r1 b/x11-misc/remind/files/digest-remind-03.00.23-r1
new file mode 100644
index 000000000000..e008b82fcd61
--- /dev/null
+++ b/x11-misc/remind/files/digest-remind-03.00.23-r1
@@ -0,0 +1 @@
+MD5 32504b3fbc66a1876be900b563efd766 remind-03.00.23.tar.gz 298411
diff --git a/x11-misc/remind/remind-03.00.23-r1.ebuild b/x11-misc/remind/remind-03.00.23-r1.ebuild
new file mode 100644
index 000000000000..5089ca3a2a47
--- /dev/null
+++ b/x11-misc/remind/remind-03.00.23-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/remind-03.00.23-r1.ebuild,v 1.1 2005/07/01 22:03:53 smithj Exp $
+
+DESCRIPTION="Ridiculously functional reminder program"
+HOMEPAGE="http://www.roaringpenguin.com/penguin/open_source_remind.php"
+SRC_URI="http://www.roaringpenguin.com/penguin/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+src_compile() {
+ econf || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ # stupid broken makefile...
+ einstall || die "first einstall failed"
+ exeinto /usr/bin/
+ doexe www/rem2html
+
+ dodoc README ACKNOWLEDGEMENTS COPYRIGHT WINDOWS doc/README.UNIX \
+ doc/WHATSNEW* www/README.*
+}