diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2009-11-19 18:09:55 +0000 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2009-11-19 18:09:55 +0000 |
commit | 039eb4a720bf7f0959ae53bb9aa34e21127f6aad (patch) | |
tree | e0e31fb90c43595f48ef94640d64a9b01541a570 /app-cdr | |
parent | Initial commit of svn devkit for scratchbox (diff) | |
download | gentoo-2-039eb4a720bf7f0959ae53bb9aa34e21127f6aad.tar.gz gentoo-2-039eb4a720bf7f0959ae53bb9aa34e21127f6aad.tar.bz2 gentoo-2-039eb4a720bf7f0959ae53bb9aa34e21127f6aad.zip |
Version bump. Remove old.
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/cdrtools/ChangeLog | 9 | ||||
-rw-r--r-- | app-cdr/cdrtools/cdrtools-2.01.01_alpha67.ebuild | 119 | ||||
-rw-r--r-- | app-cdr/cdrtools/cdrtools-2.01.01_alpha68.ebuild (renamed from app-cdr/cdrtools/cdrtools-2.01.01_alpha66.ebuild) | 14 |
3 files changed, 15 insertions, 127 deletions
diff --git a/app-cdr/cdrtools/ChangeLog b/app-cdr/cdrtools/ChangeLog index 39b8bc3feba8..c1350f692f13 100644 --- a/app-cdr/cdrtools/ChangeLog +++ b/app-cdr/cdrtools/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-cdr/cdrtools # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/ChangeLog,v 1.239 2009/11/14 19:10:39 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/ChangeLog,v 1.240 2009/11/19 18:09:55 billie Exp $ + +*cdrtools-2.01.01_alpha68 (19 Nov 2009) + + 19 Nov 2009; Daniel Pielmeier <billie@gentoo.org> + -cdrtools-2.01.01_alpha66.ebuild, -cdrtools-2.01.01_alpha67.ebuild, + +cdrtools-2.01.01_alpha68.ebuild: + Version bump. Remove old. 14 Nov 2009; Daniel Pielmeier <billie@gentoo.org> cdrtools-2.01.01_alpha67-r1.ebuild: diff --git a/app-cdr/cdrtools/cdrtools-2.01.01_alpha67.ebuild b/app-cdr/cdrtools/cdrtools-2.01.01_alpha67.ebuild deleted file mode 100644 index f7090f1faa36..000000000000 --- a/app-cdr/cdrtools/cdrtools-2.01.01_alpha67.ebuild +++ /dev/null @@ -1,119 +0,0 @@ -# Copyright 1999-2009 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_alpha67.ebuild,v 1.1 2009/11/04 18:17:23 billie Exp $ - -EAPI=2 - -inherit multilib 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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="unicode acl" - -DEPEND="acl? ( sys-apps/acl ) - !app-cdr/dvdrtools - !app-cdr/cdrkit" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${PN}-2.01.01 - -src_prepare() { - # Adjusting hardcoded paths. - sed -i -e 's:opt/schily:usr:' \ - $(grep -l --include='*.1' --include='*.8' -r 'opt/schily' .) \ - $(grep -l --include='*.c' --include='*.h' -r 'opt/schily' .) \ - || die "404 on opt-schily sed" - - sed -i -e "s:\(^INSDIR=\t\tshare/doc/\):\1${PF}/:" \ - $(grep -l -r 'INSDIR.\+doc' .) \ - || die "404 on doc sed" - - # Respect libdir. - sed -i -e "s:\(^INSDIR=\t\t\)lib:\1$(get_libdir):" \ - $(grep -l -r '^INSDIR.\+lib\(/siconv\)\?$' .) \ - || die "404 on multilib-sed" - - # See previous comment s/libdir/--disable-static/. - sed -i -e 's:include\t\t.*rules.lib::' \ - $(grep -l -r '^include.\+rules\.lib' .) \ - || die "404 on rules sed" - - # Remove profiled make files. - rm -f $(find . -name '*_p.mk') || die "rm failed" - - epatch "${FILESDIR}"/${PN}-2.01.01_alpha50-asneeded.patch - - # Schily make setup. - cd "${S}"/DEFAULTS - local MYARCH="linux" - - sed -i "s:/opt/schily:/usr:g" Defaults.${MYARCH} || die "sed schily-opt failed" - sed -i "s:/usr/src/linux/include::g" Defaults.${MYARCH} || die "sed linux-include failed" - sed -i "/RUNPATH/ c\RUNPATH= " Defaults.${MYARCH} || die "sed RUNPATH failed" - - cd "${S}"/RULES - - # Respect CC/CXX variables - local tcCC=$(tc-getCC) - local tcCXX=$(tc-getCXX) - sed -i -e "/cc-config.sh/s/\$(C_ARCH:%64=%) \$(CCOM_DEF)/${tcCC} ${tcCC}/" \ - rules1.top || die "sed rules1.top failed" - sed -i -e "/^\(CC\|DYNLD\|LDCC\|MKDEP\)/s/gcc/${tcCC}/" \ - -e "/^\(CC++\|DYNLDC++\|LDCC++\|MKC++DEP\)/s/g++/${tcCXX}/" \ - cc-gcc.rul || die "sed cc-gcc.rul failed" - sed -i -e "s/^#CONFFLAGS +=\t-cc=\$(XCC_COM)$/CONFFLAGS +=\t-cc=${tcCC}/g" \ - rules.cnf || die "sed rules.cnf failed" - - # Create additional symlinks needed for some archs. - local t - for t in ppc64 sh4 s390x ; do - ln -s i586-linux-cc.rul ${t}-linux-cc.rul || die - ln -s i586-linux-gcc.rul ${t}-linux-gcc.rul || die - done -} - -src_configure() { : ; } - -src_compile() { - local ACL="-lacl" - 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 - - if ! use acl - then - CFLAGS="${CFLAGS} -DNO_ACL" - ACL="" - fi - # If not built with -j1, "sometimes" cdda2wav will not be built. Bug? - emake -j1 CC="$(tc-getCC) -D__attribute_const__=const" COPTX="${CFLAGS}" \ - LIB_ACL_TEST="${ACL}" CPPOPTX="${CPPFLAGS}" LDOPTX="${LDFLAGS}" \ - GMAKE_NOWARN="true" || die "emake failed" -} - -src_install() { - # If not built with -j1, "sometimes" manpages are not installed. Bug? - emake -j1 MANDIR="share/man" INS_BASE="${D}/usr/" INS_RBASE="${D}" \ - LINKMODE="dynamic" GMAKE_NOWARN="true" install - - # These symlinks are for compat with cdrkit. - dosym schily /usr/include/scsilib - dosym ../scg /usr/include/schily/scg - - dodoc ABOUT Changelog README README.linux-shm START READMEs/README.linux || die "dodoc cdrtools" - - cd "${S}"/cdda2wav - docinto cdda2wav - dodoc FAQ Frontends HOWTOUSE TODO || die "dodoc cdda2wav" -} diff --git a/app-cdr/cdrtools/cdrtools-2.01.01_alpha66.ebuild b/app-cdr/cdrtools/cdrtools-2.01.01_alpha68.ebuild index c685fb92c230..6e64cb26b383 100644 --- a/app-cdr/cdrtools/cdrtools-2.01.01_alpha66.ebuild +++ b/app-cdr/cdrtools/cdrtools-2.01.01_alpha68.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 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_alpha66.ebuild,v 1.1 2009/10/13 19:26:08 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/cdrtools-2.01.01_alpha68.ebuild,v 1.1 2009/11/19 18:09:55 billie Exp $ EAPI=2 @@ -56,20 +56,20 @@ src_prepare() { sed -i "s:/usr/src/linux/include::g" Defaults.${MYARCH} || die "sed linux-include failed" sed -i "/RUNPATH/ c\RUNPATH= " Defaults.${MYARCH} || die "sed RUNPATH failed" - # Create additional symlinks needed for some archs. cd "${S}"/RULES # Respect CC/CXX variables local tcCC=$(tc-getCC) local tcCXX=$(tc-getCXX) - sed -i -e "/cc-config.sh/s/\$(C_ARCH:%64=%) \$(CCOM_DEF)/${tcCC} ${tcCC}/" \ + sed -i -e "/cc-config.sh/s|\$(C_ARCH:%64=%) \$(CCOM_DEF)|${tcCC} ${tcCC}|" \ rules1.top || die "sed rules1.top failed" - sed -i -e "/^\(CC\|DYNLD\|LDCC\|MKDEP\)/s/gcc/${tcCC}/" \ - -e "/^\(CC++\|DYNLDC++\|LDCC++\|MKC++DEP\)/s/g++/${tcCXX}/" \ + sed -i -e "/^\(CC\|DYNLD\|LDCC\|MKDEP\)/s|gcc|${tcCC}|" \ + -e "/^\(CC++\|DYNLDC++\|LDCC++\|MKC++DEP\)/s|g++|${tcCXX}|" \ cc-gcc.rul || die "sed cc-gcc.rul failed" - sed -i -e "s/^#CONFFLAGS +=\t-cc=\$(XCC_COM)$/CONFFLAGS +=\t-cc=${tcCC}/g" \ + sed -i -e "s|^#CONFFLAGS +=\t-cc=\$(XCC_COM)$|CONFFLAGS +=\t-cc=${tcCC}|g" \ rules.cnf || die "sed rules.cnf failed" + # Create additional symlinks needed for some archs. local t for t in ppc64 sh4 s390x ; do ln -s i586-linux-cc.rul ${t}-linux-cc.rul || die @@ -99,7 +99,7 @@ src_compile() { # If not built with -j1, "sometimes" cdda2wav will not be built. Bug? emake -j1 CC="$(tc-getCC) -D__attribute_const__=const" COPTX="${CFLAGS}" \ LIB_ACL_TEST="${ACL}" CPPOPTX="${CPPFLAGS}" LDOPTX="${LDFLAGS}" \ - GMAKE_NOWARN="true" || die "emake failed" + LINKMODE="dynamic" GMAKE_NOWARN="true" || die "emake failed" } src_install() { |