diff options
author | Lars Weiler <pylon@gentoo.org> | 2007-02-28 00:10:16 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2007-02-28 00:10:16 +0000 |
commit | 84e32293339c1f8c6755425efa23900f4487c80b (patch) | |
tree | 889927c0448b1699045fb8319f29486807e5be0f /app-cdr/cdrtools | |
parent | Moved from my overlay to the tree (diff) | |
download | gentoo-2-84e32293339c1f8c6755425efa23900f4487c80b.tar.gz gentoo-2-84e32293339c1f8c6755425efa23900f4487c80b.tar.bz2 gentoo-2-84e32293339c1f8c6755425efa23900f4487c80b.zip |
Version bump; removed gnuconfig.eclass functions from bug #160174.
(Portage version: 2.1.2-r12)
Diffstat (limited to 'app-cdr/cdrtools')
-rw-r--r-- | app-cdr/cdrtools/ChangeLog | 10 | ||||
-rw-r--r-- | app-cdr/cdrtools/cdrtools-2.01.01_alpha23.ebuild | 128 | ||||
-rw-r--r-- | app-cdr/cdrtools/files/digest-cdrtools-2.01.01_alpha23 | 3 |
3 files changed, 139 insertions, 2 deletions
diff --git a/app-cdr/cdrtools/ChangeLog b/app-cdr/cdrtools/ChangeLog index 2d0e2ecb5f98..72bd95e4250c 100644 --- a/app-cdr/cdrtools/ChangeLog +++ b/app-cdr/cdrtools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-cdr/cdrtools -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/ChangeLog,v 1.161 2006/11/12 05:24:44 pylon Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/ChangeLog,v 1.162 2007/02/28 00:10:16 pylon Exp $ + +*cdrtools-2.01.01_alpha23 (28 Feb 2007) + + 28 Feb 2007; Lars Weiler <pylon@gentoo.org> + +cdrtools-2.01.01_alpha23.ebuild: + Version bump; removed gnuconfig.eclass functions from bug #160174. *cdrtools-2.01.01_alpha20 (12 Nov 2006) diff --git a/app-cdr/cdrtools/cdrtools-2.01.01_alpha23.ebuild b/app-cdr/cdrtools/cdrtools-2.01.01_alpha23.ebuild new file mode 100644 index 000000000000..00e2b657f981 --- /dev/null +++ b/app-cdr/cdrtools/cdrtools-2.01.01_alpha23.ebuild @@ -0,0 +1,128 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/cdrtools-2.01.01_alpha23.ebuild,v 1.1 2007/02/28 00:10:16 pylon Exp $ + +inherit eutils toolchain-funcs flag-o-matic + +DESCRIPTION="A set of tools for CD/DVD reading and recording, including cdrecord" +HOMEPAGE="http://cdrecord.berlios.de/" +SRC_URI="ftp://ftp.berlios.de/pub/cdrecord/alpha/${P/_alpha/a}.tar.bz2" + +LICENSE="GPL-2 LGPL-2.1 CDDL-Schily" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="unicode" + +DEPEND="virtual/libc + !app-cdr/dvdrtools + !app-cdr/cdrkit" + +PROVIDE="virtual/cdrtools" + +S=${WORKDIR}/${PN}-2.01.01 + +src_unpack() { + unpack ${A} + cd "${S}" + + # CAN-2004-0806 - Bug 63187 + epatch "${FILESDIR}"/${PN}-2.01-scsi-remote.patch + epatch "${FILESDIR}"/${PN}-2.01.01a03-warnings.patch + epatch "${FILESDIR}"/${PN}-2.01.01a01-scanbus.patch + epatch "${FILESDIR}"/${PN}-2.01.01a18-rezero.patch + + #use unicode && epatch "${FILESDIR}"/mkisofs-iconv-18.patch + + # ppc-macos support + cd "${S}"/DEFAULTS + use ppc-macos && MYARCH="mac-os10" || MYARCH="linux" + + sed -i "s:/opt/schily:/usr:g" Defaults.${MYARCH} + sed -i "s:/usr/src/linux/include::g" Defaults.${MYARCH} + + cd "${S}"/librscg + sed -i "s:/opt/schily:/usr:g" scsi-remote.c + + cd "${S}"/RULES + ln -sf i386-linux-cc.rul x86_64-linux-cc.rul + ln -sf i386-linux-gcc.rul x86_64-linux-gcc.rul + ln -sf ppc-linux-cc.rul ppc64-linux-cc.rul + ln -sf mips-linux-cc.rul mips64-linux-cc.rul + ln -sf i586-linux-cc.rul sh4-linux-cc.rul +} + +src_compile() { + if use unicode; then + local flags="$(test-flags -finput-charset=ISO-8859-1 -fexec-charset=UTF-8)" + if [[ -n ${flags} ]]; then + append-flags ${flags} + else + ewarn "Your compiler does not support the options required to build" + ewarn "cdrtools with unicode in USE. unicode flag will be ignored." + fi + fi + emake CC="$(tc-getCC) -D__attribute_const__=const" COPTX="${CFLAGS}" CPPOPTX="${CPPFLAGS}" LDOPTX="${LDFLAGS}" || die +} + +src_install() { + dobin cdda2wav/OBJ/*-*-cc/cdda2wav || die "cdda2wav" + dobin cdrecord/OBJ/*-*-cc/cdrecord || die "cdrecord" + dobin mkisofs/OBJ/*-*-cc/mkisofs || die "mkisofs" + dobin readcd/OBJ/*-*-cc/readcd || die "readcd" + dosbin rscsi/OBJ/*-*-cc/rscsi || die "rscsi" + + insinto /usr/include + doins incs/*-*-cc/align.h incs/*-*-cc/avoffset.h incs/*-*-cc/xconfig.h || die "include" + + cd mkisofs/diag/OBJ/*-*-cc + dobin devdump isodump isoinfo isovfy || die "dobin" + + cd "${S}" + insinto /etc/default + doins rscsi/rscsi.dfl + doins cdrecord/cdrecord.dfl + + cd "${S}"/libs/*-*-cc + dolib.a *.a || die "dolib failed" + + cd "${S}" + insinto /usr/include/scsilib + doins include/schily/*.h + insinto /usr/include/scsilib/scg + doins include/scg/*.h + + cd "${S}" + dodoc ABOUT Changelog README START READMEs/README.linux + dodoc README.{ATAPI,audio,cdplus,cdrw,cdtext,clone,copy,DiskT@2,linux-shm,mkisofs,multi,parallel,raw,rscsi,sony,verify} + doman */*.1 + doman */*.8 + + cd "${S}"/mkisofs + docinto mkisofs + dodoc README* + + cd "${S}"/cdda2wav + docinto cdda2wav + dodoc FAQ Frontends HOWTOUSE README TODO + + cd "${S}"/doc + docinto print + dodoc *.ps +} + +pkg_postinst() { + if use ppc-macos ; then + einfo + einfo "Darwin/OS X use the following device names:" + einfo + einfo "CD burners: (probably) ./cdrecord dev=IOCompactDiscServices" + einfo + einfo "DVD burners: (probably) ./cdrecord dev=IODVDServices" + einfo + else + echo + einfo "The command line option 'dev=/dev/hdX' (X is the name of your drive)" + einfo "should be used for IDE CD writers. And make sure that the permissions" + einfo "on this device are set properly and your user is in the correct group." + fi +} diff --git a/app-cdr/cdrtools/files/digest-cdrtools-2.01.01_alpha23 b/app-cdr/cdrtools/files/digest-cdrtools-2.01.01_alpha23 new file mode 100644 index 000000000000..d78bd23c1b88 --- /dev/null +++ b/app-cdr/cdrtools/files/digest-cdrtools-2.01.01_alpha23 @@ -0,0 +1,3 @@ +MD5 89d335757232196899652f579fc241b9 cdrtools-2.01.01a23.tar.bz2 1573977 +RMD160 37d504a65c05a297595dcb88b7b42114f0537948 cdrtools-2.01.01a23.tar.bz2 1573977 +SHA256 4ca4cdab28b38e68a8bafd9147c48088206946e6d233001c418ed84a4336ff4d cdrtools-2.01.01a23.tar.bz2 1573977 |