summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cummings <mcummings@gentoo.org>2005-07-12 15:52:52 +0000
committerMichael Cummings <mcummings@gentoo.org>2005-07-12 15:52:52 +0000
commit7fe1e08bead387dd29d4f1886960b8c56ae152b0 (patch)
treeb3c73579343b3290bfee136e886441794aed0ae9
parentfix for #98777, http_port_t has to be ifdef'ed (diff)
downloadgentoo-2-7fe1e08bead387dd29d4f1886960b8c56ae152b0.tar.gz
gentoo-2-7fe1e08bead387dd29d4f1886960b8c56ae152b0.tar.bz2
gentoo-2-7fe1e08bead387dd29d4f1886960b8c56ae152b0.zip
Initial checkin
(Portage version: 2.0.51.19)
-rw-r--r--app-misc/wyrd/ChangeLog10
-rw-r--r--app-misc/wyrd/Manifest2
-rw-r--r--app-misc/wyrd/files/digest-wyrd-1.0.01
-rw-r--r--app-misc/wyrd/metadata.xml13
-rw-r--r--app-misc/wyrd/wyrd-1.0.0.ebuild22
5 files changed, 48 insertions, 0 deletions
diff --git a/app-misc/wyrd/ChangeLog b/app-misc/wyrd/ChangeLog
new file mode 100644
index 000000000000..13ad3a0c383c
--- /dev/null
+++ b/app-misc/wyrd/ChangeLog
@@ -0,0 +1,10 @@
+# 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.1 2005/07/12 15:52:51 mcummings Exp $
+
+*wyrd-1.0.0 (12 Jul 2005)
+
+ 12 Jul 2005; Michael Cummings <mcummings@gentoo.org> +metadata.xml,
+ +wyrd-1.0.0.ebuild:
+ Initial checkin
+
diff --git a/app-misc/wyrd/Manifest b/app-misc/wyrd/Manifest
new file mode 100644
index 000000000000..1bcde1c35187
--- /dev/null
+++ b/app-misc/wyrd/Manifest
@@ -0,0 +1,2 @@
+MD5 dae01bd919c771f077532dcce4580328 wyrd-1.0.0.ebuild 498
+MD5 65a525dfc3a83c73839897525012df68 files/digest-wyrd-1.0.0 62
diff --git a/app-misc/wyrd/files/digest-wyrd-1.0.0 b/app-misc/wyrd/files/digest-wyrd-1.0.0
new file mode 100644
index 000000000000..4ac22603c11d
--- /dev/null
+++ b/app-misc/wyrd/files/digest-wyrd-1.0.0
@@ -0,0 +1 @@
+MD5 ecf0feecd3d13001593235a43b4fb32a wyrd-1.0.0.tar.gz 191988
diff --git a/app-misc/wyrd/metadata.xml b/app-misc/wyrd/metadata.xml
new file mode 100644
index 000000000000..41891a04858e
--- /dev/null
+++ b/app-misc/wyrd/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd></herd>
+<maintainer>
+<email>mcummings@gentoo.org</email>
+<name>Michael Cummings</name>
+</maintainer>
+<longdescription lang="en">
+Wyrd is a curses front end to the reminder programer, ideal for use in clients like mutt.
+</longdescription>
+</pkgmetadata>
+
diff --git a/app-misc/wyrd/wyrd-1.0.0.ebuild b/app-misc/wyrd/wyrd-1.0.0.ebuild
new file mode 100644
index 000000000000..123aa9d7f51d
--- /dev/null
+++ b/app-misc/wyrd/wyrd-1.0.0.ebuild
@@ -0,0 +1,22 @@
+# 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.0.0.ebuild,v 1.1 2005/07/12 15:52:51 mcummings 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="~sparc ~x86"
+IUSE=""
+
+DEPEND=">=dev-lang/ocaml-3.08
+ sys-libs/ncurses
+ >=x11-misc/remind-3.0.23"
+
+RDEPEND="${DEPEND}"
+
+src_install() {
+ make install DESTDIR=${D} || die "install died"
+}