diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-06-10 18:18:56 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-06-10 18:18:56 +0000 |
commit | 586cc5530474aec29d254d1ba3acf05facea998e (patch) | |
tree | 766d653b8494a861d2cfa14207a0acfc4d5abde0 /app-cdr | |
parent | alpha/ia64/sparc/x86 stable wrt #225231 (diff) | |
download | gentoo-2-586cc5530474aec29d254d1ba3acf05facea998e.tar.gz gentoo-2-586cc5530474aec29d254d1ba3acf05facea998e.tar.bz2 gentoo-2-586cc5530474aec29d254d1ba3acf05facea998e.zip |
old
(Portage version: 2.1.5.4)
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/cdrdao/cdrdao-1.2.1.ebuild | 60 | ||||
-rw-r--r-- | app-cdr/cdrdao/cdrdao-1.2.2-r1.ebuild | 72 | ||||
-rw-r--r-- | app-cdr/cdrdao/files/cdrdao-1.2.0-gcc4.patch | 22 | ||||
-rw-r--r-- | app-cdr/cdrdao/files/gcdmaster.desktop | 7 |
4 files changed, 0 insertions, 161 deletions
diff --git a/app-cdr/cdrdao/cdrdao-1.2.1.ebuild b/app-cdr/cdrdao/cdrdao-1.2.1.ebuild deleted file mode 100644 index 1fc4cb567a1c..000000000000 --- a/app-cdr/cdrdao/cdrdao-1.2.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrdao/cdrdao-1.2.1.ebuild,v 1.8 2006/07/06 01:32:20 vapier Exp $ - -inherit flag-o-matic eutils - -DESCRIPTION="Burn CDs in disk-at-once mode -- with optional GUI frontend" -HOMEPAGE="http://cdrdao.sourceforge.net/" -SRC_URI="mirror://sourceforge/cdrdao/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa ppc ppc64 sparc x86" -IUSE="gnome debug encode pccts" -RESTRICT="strip" - -RDEPEND="encode? ( >=media-sound/lame-3.90 ) - gnome? ( >=dev-cpp/gtkmm-2.4 - >=dev-cpp/libgnomemm-2.6 - >=dev-cpp/libgnomecanvasmm-2.6 - >=dev-cpp/gconfmm-2.6 - >=dev-cpp/libgnomeuimm-2.6 - media-libs/libao )" -DEPEND="pccts? ( >=dev-util/pccts-1.33.24-r1 ) - virtual/cdrtools - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd ${S} - - # Display better SCSI messages (advise from Bug 43003) - cd scsilib/include - sed -i -e 's:HAVE_SCANSTACK:NO_FRIGGING_SCANSTACK:g' xmconfig.h - sed -i -e 's:HAVE_SCANSTACK:NO_FRIGGING_SCANSTACK:g' mconfig.h -} - -src_compile() { - # A few CFLAGS do not work see bug #99998 - strip-flags - append-flags "-fno-inline" - - econf \ - $(use_enable debug) \ - $(use_with gnome xdao) \ - $(use_with encode lame) \ - $(use_with pccts pcctsbin /usr/bin) \ - $(use_with pccts pcctsinc /usr/include/pccts) \ - --disable-dependency-tracking || die "configure failed" - - make || die "could not compile" -} - -src_install() { - einstall || die "could not install" - - cd ${S} - - dodoc AUTHORS CREDITS ChangeLog NEWS README* -} diff --git a/app-cdr/cdrdao/cdrdao-1.2.2-r1.ebuild b/app-cdr/cdrdao/cdrdao-1.2.2-r1.ebuild deleted file mode 100644 index d4c6d5773e9a..000000000000 --- a/app-cdr/cdrdao/cdrdao-1.2.2-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrdao/cdrdao-1.2.2-r1.ebuild,v 1.3 2008/05/05 21:47:52 drac Exp $ - -inherit eutils flag-o-matic eutils - -DESCRIPTION="Burn CDs in disk-at-once mode -- with optional GUI frontend" -HOMEPAGE="http://cdrdao.sourceforge.net/" -SRC_URI="mirror://sourceforge/cdrdao/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="gcdmaster debug encode pccts" -RESTRICT="strip" - -RDEPEND="encode? ( >=media-sound/lame-3.90 ) - gcdmaster? ( >=dev-cpp/gtkmm-2.4 - >=dev-cpp/libgnomemm-2.6 - >=dev-cpp/libgnomecanvasmm-2.6 - >=dev-cpp/gconfmm-2.6 - >=dev-cpp/libgnomeuimm-2.6 - media-libs/libao )" -DEPEND="pccts? ( >=dev-util/pccts-1.33.24-r1 ) - virtual/cdrtools - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fixes bug #212530 - epatch "${FILESDIR}/${PN}-1.2.2-use-new-sigc++-API.patch" - - # FreeBSD needs this patch - # I think the correct define should be linux, but this will maintain - # the status quo for the time being. - # Upstream bug #1596097 - epatch "${FILESDIR}/${P}"-nonlinux.patch - - # GCC 4.3 patch. Should be fixed in next version. - epatch "${FILESDIR}"/${P}-gcc43.patch - - # Display better SCSI messages (advise from Bug 43003) - cd scsilib/include - sed -i -e 's:HAVE_SCANSTACK:NO_FRIGGING_SCANSTACK:g' xmconfig.h - sed -i -e 's:HAVE_SCANSTACK:NO_FRIGGING_SCANSTACK:g' mconfig.h -} - -src_compile() { - # A few CFLAGS do not work see bug #99998 - strip-flags - append-flags "-fno-inline" - - econf \ - $(use_enable debug) \ - $(use_with gcdmaster xdao) \ - $(use_with encode lame) \ - $(use_with pccts pcctsbin /usr/bin) \ - $(use_with pccts pcctsinc /usr/include/pccts) \ - --disable-dependency-tracking || die "configure failed" - - make || die "could not compile" -} - -src_install() { - einstall || die "could not install" - - cd "${S}" - - dodoc AUTHORS CREDITS ChangeLog NEWS README* -} diff --git a/app-cdr/cdrdao/files/cdrdao-1.2.0-gcc4.patch b/app-cdr/cdrdao/files/cdrdao-1.2.0-gcc4.patch deleted file mode 100644 index ad00a44b436d..000000000000 --- a/app-cdr/cdrdao/files/cdrdao-1.2.0-gcc4.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- cdrdao-1.2.0/trackdb/FormatConverter.h 2005-06-30 13:35:59.000000000 +0200 -+++ cdrdao-1.2.0.az/trackdb/FormatConverter.h 2005-06-30 13:34:18.000000000 +0200 -@@ -95,7 +95,7 @@ - - // Convert all files contained in a given Toc object, and update the - // Toc accordingly. This is a big time blocking call. -- FormatSupport::Status convert(Toc* toc); -+ FormatSupport::Status convert(class Toc* toc); - - // Dynamic allocator. - FormatSupport* newConverter(const char* src); ---- cdrdao-1.2.0/trackdb/CueParser.cc 2005-06-30 13:36:09.000000000 +0200 -+++ cdrdao-1.2.0.az/trackdb/CueParser.cc 2005-06-30 13:36:22.000000000 +0200 -@@ -23,7 +23,7 @@ - - #include "Cue2Toc.h" - --extern Toc *parseToc(const char* tocBuffer, const char *filename); -+extern class Toc *parseToc(const char* tocBuffer, const char *filename); - - Toc *parseCue(FILE *fp, const char *filename) - { diff --git a/app-cdr/cdrdao/files/gcdmaster.desktop b/app-cdr/cdrdao/files/gcdmaster.desktop deleted file mode 100644 index abd48691ffb3..000000000000 --- a/app-cdr/cdrdao/files/gcdmaster.desktop +++ /dev/null @@ -1,7 +0,0 @@ -[Desktop Entry] -Name=Gnome CD Master -Comment=Utility to Burn CDs -Exec=gcdmaster -Icon=gcdmaster.png -Terminal=0 -Type=Application |