diff options
author | Torsten Veller <tove@gentoo.org> | 2005-10-26 20:34:11 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2005-10-26 20:34:11 +0000 |
commit | 2c0f624e1f04772d1d945f5ba32b09234f608e9d (patch) | |
tree | eb71abcac82598449ef74cfce13ba0feeb762266 /app-misc/wyrd | |
parent | desktop file install is now handled in package-ooo (diff) | |
download | historical-2c0f624e1f04772d1d945f5ba32b09234f608e9d.tar.gz historical-2c0f624e1f04772d1d945f5ba32b09234f608e9d.tar.bz2 historical-2c0f624e1f04772d1d945f5ba32b09234f608e9d.zip |
Version bump.
Package-Manager: portage-2.0.53_rc6
Diffstat (limited to 'app-misc/wyrd')
-rw-r--r-- | app-misc/wyrd/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/wyrd/Manifest | 14 | ||||
-rw-r--r-- | app-misc/wyrd/files/digest-wyrd-1.1.1 | 1 | ||||
-rw-r--r-- | app-misc/wyrd/wyrd-1.1.1.ebuild | 30 |
4 files changed, 45 insertions, 7 deletions
diff --git a/app-misc/wyrd/ChangeLog b/app-misc/wyrd/ChangeLog index a6a70ee54c77..d896b6736408 100644 --- a/app-misc/wyrd/ChangeLog +++ b/app-misc/wyrd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/wyrd # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/ChangeLog,v 1.2 2005/07/13 09:13:11 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/ChangeLog,v 1.3 2005/10/26 20:34:11 tove Exp $ + +*wyrd-1.1.1 (26 Oct 2005) + + 26 Oct 2005; Torsten Veller <tove@gentoo.org> +wyrd-1.1.1.ebuild: + Version bump. 13 Jul 2005; David Holm <dholm@gentoo.org> wyrd-1.0.0.ebuild: Added to ~ppc. diff --git a/app-misc/wyrd/Manifest b/app-misc/wyrd/Manifest index e21b981c0838..5352ca09c9ce 100644 --- a/app-misc/wyrd/Manifest +++ b/app-misc/wyrd/Manifest @@ -1,14 +1,16 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 a37aaf3472cf7340609b98b82dd06d5f wyrd-1.0.0.ebuild 599 -MD5 427ef88b0b873f3eb0aa76d15a5cc8e0 ChangeLog 418 -MD5 4a6a953879a42aee5735cb2434ae754d metadata.xml 369 +MD5 2e193cbd74bbe209ab0eed4c1bd4d234 ChangeLog 529 MD5 65a525dfc3a83c73839897525012df68 files/digest-wyrd-1.0.0 62 +MD5 141d7e8a8e5f82f55bd83bbb664a46d9 files/digest-wyrd-1.1.1 62 +MD5 4a6a953879a42aee5735cb2434ae754d metadata.xml 369 +MD5 a37aaf3472cf7340609b98b82dd06d5f wyrd-1.0.0.ebuild 599 +MD5 f39bfdc091ab5e5702097d597b83d01d wyrd-1.1.1.ebuild 738 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFDLLNHV3J2n04EauwRArY+AKC9h/+Z2Uh+P3yiW+hfSUiAAr/RrwCffXVh -NpZQqizViCwFp+JfagjvuTY= -=N2+k +iD8DBQFDX+hPV3J2n04EauwRAu9zAJ9a4B7xPAP4/0JOmonpmyl/jTDTeACgo95G +kVCrI3x3DpN5HnA57ikkTm0= +=lIiW -----END PGP SIGNATURE----- diff --git a/app-misc/wyrd/files/digest-wyrd-1.1.1 b/app-misc/wyrd/files/digest-wyrd-1.1.1 new file mode 100644 index 000000000000..f917d3d6cc92 --- /dev/null +++ b/app-misc/wyrd/files/digest-wyrd-1.1.1 @@ -0,0 +1 @@ +MD5 28b9c8d962741cb77dcaea732786e61c wyrd-1.1.1.tar.gz 207170 diff --git a/app-misc/wyrd/wyrd-1.1.1.ebuild b/app-misc/wyrd/wyrd-1.1.1.ebuild new file mode 100644 index 000000000000..f203d0278ca3 --- /dev/null +++ b/app-misc/wyrd/wyrd-1.1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/wyrd-1.1.1.ebuild,v 1.1 2005/10/26 20:34:11 tove Exp $ + +DESCRIPTION="Text-based front-end to Remind" +HOMEPAGE="http://www.eecs.umich.edu/~pelzlpj/wyrd/" +SRC_URI="http://www.eecs.umich.edu/~pelzlpj/wyrd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~sparc ~x86" +IUSE="" + +DEPEND=">=dev-lang/ocaml-3.08 + sys-libs/ncurses + >=x11-misc/remind-3.0.23" + +src_compile() { + econf || die "configure failed." + + # parallel make doesn't work + emake -j1 || die "make failed." +} + +src_install() { + make DESTDIR="${D}" install || die "install died" + + dodoc ChangeLog + dohtml doc/manual.html +} |