summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Januszewski <spock@gentoo.org>2008-11-30 19:32:11 +0000
committerMichael Januszewski <spock@gentoo.org>2008-11-30 19:32:11 +0000
commit6e88298facc805b6adb67848e492429f6ef48732 (patch)
treef45933149c425c5e1eee3a7648c25b2604903c42 /app-emulation
parentold (diff)
downloadgentoo-2-6e88298facc805b6adb67848e492429f6ef48732.tar.gz
gentoo-2-6e88298facc805b6adb67848e492429f6ef48732.tar.bz2
gentoo-2-6e88298facc805b6adb67848e492429f6ef48732.zip
Add a fix for bug #249239. Remove old ebuilds.
(Portage version: 2.1.6_rc2/cvs/Linux 2.6.27 x86_64)
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/uade/ChangeLog11
-rw-r--r--app-emulation/uade/files/uade-2.12-asneeded.patch12
-rw-r--r--app-emulation/uade/uade-2.02.ebuild42
-rw-r--r--app-emulation/uade/uade-2.03.ebuild36
-rw-r--r--app-emulation/uade/uade-2.07.ebuild36
-rw-r--r--app-emulation/uade/uade-2.09.ebuild38
-rw-r--r--app-emulation/uade/uade-2.12.ebuild8
7 files changed, 29 insertions, 154 deletions
diff --git a/app-emulation/uade/ChangeLog b/app-emulation/uade/ChangeLog
index e65bcb327926..2ea10714c574 100644
--- a/app-emulation/uade/ChangeLog
+++ b/app-emulation/uade/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-emulation/uade
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.52 2008/11/01 18:37:48 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/ChangeLog,v 1.53 2008/11/30 19:32:10 spock Exp $
+
+ 30 Nov 2008; Michał Januszewski <spock@gentoo.org>
+ +files/uade-2.12-asneeded.patch, -uade-2.02.ebuild, -uade-2.03.ebuild,
+ -uade-2.07.ebuild, -uade-2.09.ebuild, uade-2.12.ebuild:
+ Add a fix for bug #249239. Remove old ebuilds.
01 Nov 2008; nixnut <nixnut@gentoo.org> uade-2.12.ebuild:
Stable on ppc wrt bug 242592
@@ -8,6 +13,10 @@
19 Oct 2008; Markus Meier <maekke@gentoo.org> uade-2.12.ebuild:
amd64/x86 stable, bug #242592
+ 30 Nov 2008; Michał Januszewski <spock@gentoo.org>
+ +files/uade-2.12-asneeded.patch, uade-2.12.ebuild:
+ Add a fix for bug #249239.
+
*uade-2.12 (07 Sep 2008)
07 Sep 2008; Michał Januszewski <spock@gentoo.org> +uade-2.12.ebuild:
diff --git a/app-emulation/uade/files/uade-2.12-asneeded.patch b/app-emulation/uade/files/uade-2.12-asneeded.patch
new file mode 100644
index 000000000000..9edd462a4710
--- /dev/null
+++ b/app-emulation/uade/files/uade-2.12-asneeded.patch
@@ -0,0 +1,12 @@
+diff -Naurp uade-2.12-orig/src/frontends/uadefs/Makefile.in uade-2.12/src/frontends/uadefs/Makefile.in
+--- uade-2.12-orig/src/frontends/uadefs/Makefile.in 2008-11-30 20:23:27.000000000 +0100
++++ uade-2.12/src/frontends/uadefs/Makefile.in 2008-11-30 20:24:01.000000000 +0100
+@@ -16,7 +16,7 @@ MODULES = uadefs.o $(COMMONMODULES)
+ $(CC) $(CFLAGS) -c $<
+
+ uadefs: $(MODULES)
+- $(CC) $(CFLAGS) $(CLIBS) -o $@ $(MODULES)
++ $(CC) $(CFLAGS) -o $@ $(MODULES) $(CLIBS)
+
+ uadefs.o: uadefs.c
+
diff --git a/app-emulation/uade/uade-2.02.ebuild b/app-emulation/uade/uade-2.02.ebuild
deleted file mode 100644
index f0bdafdffeee..000000000000
--- a/app-emulation/uade/uade-2.02.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-2.02.ebuild,v 1.6 2006/11/13 14:58:24 flameeyes Exp $
-
-inherit eutils
-
-DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API"
-HOMEPAGE="http://zakalwe.fi/uade"
-SRC_URI="http://zakalwe.fi/uade/uade2/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc ~amd64"
-IUSE="audacious"
-
-RDEPEND="media-libs/libao
- audacious? ( >=media-sound/audacious-0.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i -e 's@#include <audacious/configfile.h>@@' src/frontends/audacious/*
-}
-
-src_compile() {
- ./configure \
- --prefix=/usr \
- --package-prefix="${D}" \
- $(use_with audacious) \
- --without-xmms \
- || die "configure failed"
- emake || die 'emake failed'
-}
-
-src_install() {
- make install || die 'make install failed'
- dodoc AUTHORS ChangeLog doc/BUGS doc/PLANS
- doman doc/uade123.1
-}
diff --git a/app-emulation/uade/uade-2.03.ebuild b/app-emulation/uade/uade-2.03.ebuild
deleted file mode 100644
index 83df96bf5cff..000000000000
--- a/app-emulation/uade/uade-2.03.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-2.03.ebuild,v 1.5 2007/05/05 15:00:21 dertobi123 Exp $
-
-inherit eutils
-
-DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API"
-HOMEPAGE="http://zakalwe.fi/uade"
-SRC_URI="http://zakalwe.fi/uade/uade2/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
-IUSE="audacious"
-
-RDEPEND="media-libs/libao
- audacious? ( >=media-sound/audacious-0.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_compile() {
- ./configure \
- --prefix=/usr \
- --package-prefix="${D}" \
- $(use_with audacious) \
- --without-xmms \
- || die "configure failed"
- emake || die 'emake failed'
-}
-
-src_install() {
- make install || die 'make install failed'
- dodoc AUTHORS ChangeLog doc/BUGS doc/PLANS
- doman doc/uade123.1
-}
diff --git a/app-emulation/uade/uade-2.07.ebuild b/app-emulation/uade/uade-2.07.ebuild
deleted file mode 100644
index b625da25e9ba..000000000000
--- a/app-emulation/uade/uade-2.07.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-2.07.ebuild,v 1.1 2007/07/10 22:38:07 spock Exp $
-
-inherit eutils
-
-DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API"
-HOMEPAGE="http://zakalwe.fi/uade"
-SRC_URI="http://zakalwe.fi/uade/uade2/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="audacious"
-
-RDEPEND="media-libs/libao
- audacious? ( >=media-sound/audacious-0.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_compile() {
- ./configure \
- --prefix=/usr \
- --package-prefix="${D}" \
- $(use_with audacious) \
- --without-xmms \
- || die "configure failed"
- emake || die 'emake failed'
-}
-
-src_install() {
- make install || die 'make install failed'
- dodoc AUTHORS ChangeLog doc/BUGS doc/PLANS
- doman doc/uade123.1
-}
diff --git a/app-emulation/uade/uade-2.09.ebuild b/app-emulation/uade/uade-2.09.ebuild
deleted file mode 100644
index 432df94273f3..000000000000
--- a/app-emulation/uade/uade-2.09.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-2.09.ebuild,v 1.1 2008/01/03 18:08:34 spock Exp $
-
-inherit eutils
-
-DESCRIPTION="Unix Amiga Delitracker Emulator - plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API"
-HOMEPAGE="http://zakalwe.fi/uade"
-SRC_URI="http://zakalwe.fi/uade/uade2/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="audacious"
-
-RDEPEND="media-libs/libao
- audacious? ( >=media-sound/audacious-0.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_compile() {
- ./configure \
- --prefix=/usr \
- --package-prefix="${D}" \
- $(use_with audacious) \
- --with-uade123 \
- --with-text-scope \
- --without-xmms \
- || die "configure failed"
- emake || die 'emake failed'
-}
-
-src_install() {
- make install || die 'make install failed'
- dodoc AUTHORS ChangeLog doc/BUGS doc/PLANS
- doman doc/uade123.1
-}
diff --git a/app-emulation/uade/uade-2.12.ebuild b/app-emulation/uade/uade-2.12.ebuild
index 6856d04fae3e..4cd91afe36cb 100644
--- a/app-emulation/uade/uade-2.12.ebuild
+++ b/app-emulation/uade/uade-2.12.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-2.12.ebuild,v 1.3 2008/11/01 18:37:48 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/uade/uade-2.12.ebuild,v 1.4 2008/11/30 19:32:10 spock Exp $
inherit eutils
@@ -19,6 +19,12 @@ RDEPEND="media-libs/libao
DEPEND="${RDEPEND}
dev-util/pkgconfig"
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/uade-2.12-asneeded.patch
+}
+
src_compile() {
./configure \
--prefix=/usr \