diff options
author | Ryan Tolboom <ryan@gentoo.org> | 2001-02-10 23:39:36 +0000 |
---|---|---|
committer | Ryan Tolboom <ryan@gentoo.org> | 2001-02-10 23:39:36 +0000 |
commit | 6ab8d7d4c32d6d973aa4ab4c547e64a761b9a862 (patch) | |
tree | 1d6c45f6f9bf9f1a58dae55209d106a036054423 /media-sound/dcd | |
parent | *** empty log message *** (diff) | |
download | historical-6ab8d7d4c32d6d973aa4ab4c547e64a761b9a862.tar.gz historical-6ab8d7d4c32d6d973aa4ab4c547e64a761b9a862.tar.bz2 historical-6ab8d7d4c32d6d973aa4ab4c547e64a761b9a862.zip |
Initial DCD ebuild script. Command line CD player.
Diffstat (limited to 'media-sound/dcd')
-rw-r--r-- | media-sound/dcd/dcd-0.90.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-sound/dcd/dcd-0.90.ebuild b/media-sound/dcd/dcd-0.90.ebuild new file mode 100644 index 000000000000..e55ee311a1aa --- /dev/null +++ b/media-sound/dcd/dcd-0.90.ebuild @@ -0,0 +1,34 @@ +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ryan Tolboom <ryan@intphsys.com> + +S=${WORKDIR}/dcd-0.90 +SRC_URI="http://www.technopagan.org/dcd/dcd-0.90.tar.bz2" + +HOMEPAGE="http://www.technopagan.org/dcd" + +DESCRIPTION="A simple command-line based CD Player" + +DEPEND=">=sys-libs/glibc-2.1.3" + +src_unpack() { + + unpack ${A} + cd ${S} + cat Makefile | sed "s:PREFIX = .*$:PREFIX = \"${D}/usr\":" |\ + sed "s:# CDROM = /dev/cdroms/cdrom0:CDROM = \"/dev/cdroms/cdrom0\":"\ + > Makefile + +} + +src_compile() { + + try make + +} + +src_install() { + + try make PREFIX=${D}/usr install + dodoc README BUGS + +} |