diff options
author | 2001-02-10 11:24:50 +0000 | |
---|---|---|
committer | 2001-02-10 11:24:50 +0000 | |
commit | 3f371e1dd87b17c64f0358572717497ef9dd60c5 (patch) | |
tree | 75a5faa3c2773764503f7255ff5a5fd24680373e /app-cdr | |
parent | *** empty log message *** (diff) | |
download | historical-3f371e1dd87b17c64f0358572717497ef9dd60c5.tar.gz historical-3f371e1dd87b17c64f0358572717497ef9dd60c5.tar.bz2 historical-3f371e1dd87b17c64f0358572717497ef9dd60c5.zip |
Some forgotten files
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/cdrecord/cdrecord-1.9-r2.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app-cdr/cdrecord/cdrecord-1.9-r2.ebuild b/app-cdr/cdrecord/cdrecord-1.9-r2.ebuild new file mode 100644 index 000000000000..8b0eae93dfab --- /dev/null +++ b/app-cdr/cdrecord/cdrecord-1.9-r2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrecord/cdrecord-1.9-r2.ebuild,v 1.1 2001/02/10 11:24:50 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="cdrecord" +SRC_URI="ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/${A}" +HOMEPAGE="http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html" + +DEPEND="virtual/glibc" + +src_unpack() { + + unpack ${A} + cd ${S}/DEFAULTS + cp Defaults.linux Defaults.linux.bak + sed -e "s:/opt/schily:/usr:g" Defaults.linux.bak > Defaults.linux + cd .. + +} + + +src_compile() { + + try ./Gmake.linux +} + +src_install() { + + + dobin cdda2wav/OBJ/*-linux-cc/cdda2wav + dobin cdrecord/OBJ/*-linux-cc/cdrecord + cd ${S} + dobin mkisofs/OBJ/*-linux-cc/mkisofs + dobin misc/OBJ/*-linux-cc/readcd + insinto /usr/include + doins incs/*-linux-cc/align.h incs/*-linux-cc/avoffset.h + + cd mkisofs/diag/OBJ/*-linux-cc + dobin devdump isodump isoinfo isovfy + + cd ${S}/libs/*-linux-cc + dolib.a *.a + + cd ${S}/doc + newman cdda2wav.man cdda2wav.1 + newman cdrecord.man cdrecord.1 + newman readcd.man readcd.1 + newman isoinfo.man isoinfo.8 + newman mkisofs.man mkisofs.8 + + cd ${S} + dodoc Changelog COPYING PORTING README* START + +} + + + |