summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Keadle <mkeadle@gentoo.org>2002-11-04 23:33:38 +0000
committerMatt Keadle <mkeadle@gentoo.org>2002-11-04 23:33:38 +0000
commit73b4bacd0333c96fadcf334e406ebfc36d95a2bd (patch)
tree944a5dd743e894c8086b3a5a37b4113ca360ac5e /media-sound/saydate
parentupdated the ipv6 patch to fetch from my homepage (diff)
downloadgentoo-2-73b4bacd0333c96fadcf334e406ebfc36d95a2bd.tar.gz
gentoo-2-73b4bacd0333c96fadcf334e406ebfc36d95a2bd.tar.bz2
gentoo-2-73b4bacd0333c96fadcf334e406ebfc36d95a2bd.zip
Addind new package saydate. ~keyworded for testing.
Diffstat (limited to 'media-sound/saydate')
-rw-r--r--media-sound/saydate/ChangeLog10
-rw-r--r--media-sound/saydate/files/digest-saydate-0.3.01
-rw-r--r--media-sound/saydate/saydate-0.3.0.ebuild34
3 files changed, 45 insertions, 0 deletions
diff --git a/media-sound/saydate/ChangeLog b/media-sound/saydate/ChangeLog
new file mode 100644
index 000000000000..c76d19bcf4d2
--- /dev/null
+++ b/media-sound/saydate/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for media-sound/saydate
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header
+
+*saydate-0.3.0 (4 Nov 2002)
+
+ 4 Nov 2002; Matt Keadle <mkeadle@gentoo.org> saydate-0.3.0.ebuild :
+
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. Thanks to Paul Belt for submitting this ebuild.
diff --git a/media-sound/saydate/files/digest-saydate-0.3.0 b/media-sound/saydate/files/digest-saydate-0.3.0
new file mode 100644
index 000000000000..cc33d4f3d55d
--- /dev/null
+++ b/media-sound/saydate/files/digest-saydate-0.3.0
@@ -0,0 +1 @@
+MD5 7d917bcd7a7d264bd092aa29c566d024 saydate-0.3.0.tar.gz 137732
diff --git a/media-sound/saydate/saydate-0.3.0.ebuild b/media-sound/saydate/saydate-0.3.0.ebuild
new file mode 100644
index 000000000000..9419dc8b5a15
--- /dev/null
+++ b/media-sound/saydate/saydate-0.3.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/saydate/saydate-0.3.0.ebuild,v 1.1 2002/11/04 23:33:37 mkeadle Exp $
+
+S=${WORKDIR}/${PN}
+DESCRIPTION="A Linux shell program that talks the date and system uptime."
+HOMEPAGE="http://unihedron.com/projects/saydate/saydate.php"
+SRC_URI="http://unihedron.com/projects/saydate/${P}.tar.gz"
+LICENSE="GPL2"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="sys-apps/supersed"
+IUSE=""
+
+src_compile() {
+ einfo 'Nothing to compile'
+}
+
+src_install () {
+ insinto /usr/share/man/man1
+ doins ${S}/man/saydate.1.gz ${S}/man/au2raw.1.gz
+
+ dodir /usr/share/saydate
+ insinto /usr/share/saydate
+ doins ${S}/data/*.raw
+
+ ssed -i "s:/dev/audio:/dev/dsp:" ${S}/saydate
+ ssed -i "s:/dev/audio:/dev/dsp:" ${S}/au2raw
+ ssed -i "s:/dev/audio:/dev/dsp:" ${S}/DESIGN
+ dodoc README TODO HISTORY DESIGN COPYING
+ dobin saydate au2raw
+
+}