diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2008-06-15 16:07:59 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2008-06-15 16:07:59 +0000 |
commit | 90bd196f7176bdf2af4accd124ecafa769d83c8b (patch) | |
tree | 664461af34c61e2097ef7da73c1005ae8eab4ea6 /app-cdr | |
parent | version bump wrt security #227111 (diff) | |
download | historical-90bd196f7176bdf2af4accd124ecafa769d83c8b.tar.gz historical-90bd196f7176bdf2af4accd124ecafa769d83c8b.tar.bz2 historical-90bd196f7176bdf2af4accd124ecafa769d83c8b.zip |
old
Package-Manager: portage-2.1.5.5
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/b5i2iso/b5i2iso-0.1.ebuild | 24 | ||||
-rw-r--r-- | app-cdr/bchunk/bchunk-1.1.1.ebuild | 26 | ||||
-rw-r--r-- | app-cdr/dvd95/dvd95-1.3_p0.ebuild | 50 |
3 files changed, 0 insertions, 100 deletions
diff --git a/app-cdr/b5i2iso/b5i2iso-0.1.ebuild b/app-cdr/b5i2iso/b5i2iso-0.1.ebuild deleted file mode 100644 index d06c80f50f5d..000000000000 --- a/app-cdr/b5i2iso/b5i2iso-0.1.ebuild +++ /dev/null @@ -1,24 +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/b5i2iso/b5i2iso-0.1.ebuild,v 1.3 2008/06/06 21:03:24 drac Exp $ - -inherit toolchain-funcs - -DESCRIPTION="BlindWrite image to ISO image file converter" -HOMEPAGE="http://developer.berlios.de/projects/b5i2iso/" -SRC_URI="mirror://berlios/${PN}/${PN}.tar.bz2" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~ppc" -IUSE="" -DEPEND="virtual/libc" - -S=${WORKDIR}/${PN} - -src_compile() { - $(tc-getCC) src/${PN}.c -o ${PN} ${CFLAGS} || die "compile failed" -} - -src_install() { - dobin ${PN} || die "dobin failed" -} diff --git a/app-cdr/bchunk/bchunk-1.1.1.ebuild b/app-cdr/bchunk/bchunk-1.1.1.ebuild deleted file mode 100644 index b69c464a48d2..000000000000 --- a/app-cdr/bchunk/bchunk-1.1.1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/bchunk/bchunk-1.1.1.ebuild,v 1.19 2005/05/30 18:03:13 pylon Exp $ - -inherit toolchain-funcs - -DESCRIPTION="Converts bin/cue CD-images to iso+wav/cdr" -HOMEPAGE="http://hes.iki.fi/bchunk/" -SRC_URI="http://hes.iki.fi/bchunk/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc ~amd64" -IUSE="" - -DEPEND="virtual/libc" - -src_compile() { - $(tc-getCC) ${CFLAGS} -o bchunk bchunk.c || die -} - -src_install() { - dobin bchunk || die - doman bchunk.1 - dodoc ${P}.lsm README -} diff --git a/app-cdr/dvd95/dvd95-1.3_p0.ebuild b/app-cdr/dvd95/dvd95-1.3_p0.ebuild deleted file mode 100644 index 50ea39c83b4b..000000000000 --- a/app-cdr/dvd95/dvd95-1.3_p0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/dvd95/dvd95-1.3_p0.ebuild,v 1.1 2007/12/16 21:15:59 pylon Exp $ - -MY_P=${P/_/} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="DVD95 is a Gnome application to convert DVD9 to DVD5." -HOMEPAGE="http://dvd95.sourceforge.net/" -SRC_URI="mirror://sourceforge/dvd95/${MY_P/_/}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE_LINGUAS="linguas_de linguas_cs linguas_el linguas_en linguas_fr linguas_hu linguas_nl linguas_pt_BR" -IUSE="${IUSE_LINGUAS} mmx 3dnow sse sse2" - -DEPEND="gnome-base/libgnomeui - media-libs/libdvdread" - -RDEPEND="gnome-base/libgnomeui - media-libs/libdvdread" - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i "s#prefix = /usr/local#prefix = /usr#" po/Makefile.in -} - -src_compile() { - # Default language is French, but switch to English if no LINGUAS is set. - - if [ -z "${LINGUAS}" ]; then - export LINGUAS="en" - fi - - econf $(use_enable mmx) \ - $(use_enable 3dnow) \ - $(use_enable sse) \ - $(use_enable sse2) \ - || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "install failed" - dodoc AUTHORS ChangeLog NEWS README -} |