summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-03-02 09:44:05 +0000
committerTim Harder <radhermit@gentoo.org>2013-03-02 09:44:05 +0000
commit33c0c9b4b2e8029ac3d07598dd78baed0dd7f3fa (patch)
treebcf43e9d4bc864a3f9628ead72b481be6605bcbe /media-sound/giada
parentVersion bump. (diff)
downloadgentoo-2-33c0c9b4b2e8029ac3d07598dd78baed0dd7f3fa.tar.gz
gentoo-2-33c0c9b4b2e8029ac3d07598dd78baed0dd7f3fa.tar.bz2
gentoo-2-33c0c9b4b2e8029ac3d07598dd78baed0dd7f3fa.zip
Remove old.
(Portage version: 2.2.0_alpha164/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-sound/giada')
-rw-r--r--media-sound/giada/ChangeLog6
-rw-r--r--media-sound/giada/files/giada-0.5.4-configure.patch50
-rw-r--r--media-sound/giada/giada-0.5.4.ebuild42
-rw-r--r--media-sound/giada/giada-0.5.6.ebuild42
-rw-r--r--media-sound/giada/giada-0.5.7.ebuild42
5 files changed, 5 insertions, 177 deletions
diff --git a/media-sound/giada/ChangeLog b/media-sound/giada/ChangeLog
index 0a8ba5c87585..a99e69db5cfb 100644
--- a/media-sound/giada/ChangeLog
+++ b/media-sound/giada/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/giada
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/giada/ChangeLog,v 1.5 2013/03/02 09:43:20 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/giada/ChangeLog,v 1.6 2013/03/02 09:44:05 radhermit Exp $
+
+ 02 Mar 2013; Tim Harder <radhermit@gentoo.org> -giada-0.5.4.ebuild,
+ -files/giada-0.5.4-configure.patch, -giada-0.5.6.ebuild, -giada-0.5.7.ebuild:
+ Remove old.
*giada-0.6.0 (02 Mar 2013)
diff --git a/media-sound/giada/files/giada-0.5.4-configure.patch b/media-sound/giada/files/giada-0.5.4-configure.patch
deleted file mode 100644
index 4a9b618b0967..000000000000
--- a/media-sound/giada/files/giada-0.5.4-configure.patch
+++ /dev/null
@@ -1,50 +0,0 @@
---- giada-0.5.4/configure.ac
-+++ giada-0.5.4/configure.ac
-@@ -52,6 +52,27 @@
- [AC_DEFINE(WITH_VST)]
- )
-
-+AC_ARG_ENABLE(
-+ alsa,
-+ AS_HELP_STRING([--disable-alsa], [disable alsa support]),
-+ [AC_DEFINE(WITH_ALSA)]
-+)
-+AM_CONDITIONAL(ALSA, test "x$enable_alsa" = "xtrue")
-+
-+AC_ARG_ENABLE(
-+ jack,
-+ AS_HELP_STRING([--enable-jack], [enable jack support]),
-+ [AC_DEFINE(WITH_JACK)]
-+)
-+AM_CONDITIONAL(JACK, test "x$enable_jack" = "xtrue")
-+
-+AC_ARG_ENABLE(
-+ pulse,
-+ AS_HELP_STRING([--enable-pulse], [enable pulseaudio support]),
-+ [AC_DEFINE(WITH_PULSE)]
-+)
-+AM_CONDITIONAL(PULSE, test "x$enable_pulse" = "xtrue")
-+
- # ----------------------------------------------------------------------
-
- # Checks for programs.
---- giada-0.5.4/src/Makefile.am
-+++ giada-0.5.4/src/Makefile.am
-@@ -38,7 +38,16 @@
- # inside configure.ac
- if LINUX
- giada_LDADD = -lsndfile -lfltk -lXext -lX11 -lXft -lXpm -lm -lrtaudio \
-- -ljack -lasound -lpthread -ldl -lpulse-simple
-+ -lpthread -ldl
-+if ALSA
-+giada_LDADD += -lasound
-+endif
-+if JACK
-+giada_LDADD += -ljack
-+endif
-+if PULSE
-+giada_LDADD += -lpulse-simple
-+endif
- endif
- if WINDOWS
- giada_LDADD = -lole32 -lrtaudio -ldsound -lwinmm -lwsock32 -lm \
diff --git a/media-sound/giada/giada-0.5.4.ebuild b/media-sound/giada/giada-0.5.4.ebuild
deleted file mode 100644
index 9aaa08eae292..000000000000
--- a/media-sound/giada/giada-0.5.4.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/giada/giada-0.5.4.ebuild,v 1.1 2012/11/27 07:38:44 radhermit Exp $
-
-EAPI=5
-
-inherit flag-o-matic eutils autotools
-
-DESCRIPTION="A free, minimal, hardcore audio tool for djs and live performers"
-HOMEPAGE="http://www.monocasual.com/giada/"
-SRC_URI="http://www.monocasual.com/giada/download.php?dist=source&file=${PN}_${PV}_src.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa jack pulseaudio"
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-RDEPEND="media-libs/libsndfile
- media-libs/rtaudio[alsa?,jack?,pulseaudio?]
- x11-libs/fltk:1
- x11-libs/libXpm"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-flags.patch
- epatch "${FILESDIR}"/${P}-configure.patch
- eautoreconf
-}
-
-src_configure() {
- append-cppflags -I/usr/include/fltk-1
- append-ldflags -L/usr/$(get_libdir)/fltk-1
-
- econf \
- --target=linux \
- $(use_enable alsa) \
- $(use_enable jack) \
- $(use_enable pulseaudio pulse)
-}
diff --git a/media-sound/giada/giada-0.5.6.ebuild b/media-sound/giada/giada-0.5.6.ebuild
deleted file mode 100644
index 330525f28f20..000000000000
--- a/media-sound/giada/giada-0.5.6.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/giada/giada-0.5.6.ebuild,v 1.1 2013/01/03 03:18:39 radhermit Exp $
-
-EAPI=5
-
-inherit flag-o-matic eutils autotools
-
-DESCRIPTION="A free, minimal, hardcore audio tool for djs and live performers"
-HOMEPAGE="http://www.monocasual.com/giada/"
-SRC_URI="http://www.monocasual.com/giada/download.php?dist=source&file=${PN}_${PV}_src.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa jack pulseaudio"
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-RDEPEND="media-libs/libsndfile
- media-libs/rtaudio[alsa?,jack?,pulseaudio?]
- x11-libs/fltk:1
- x11-libs/libXpm"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.5.4-flags.patch
- epatch "${FILESDIR}"/${PN}-0.5.4-configure.patch
- eautoreconf
-}
-
-src_configure() {
- append-cppflags -I/usr/include/fltk-1
- append-ldflags -L/usr/$(get_libdir)/fltk-1
-
- econf \
- --target=linux \
- $(use_enable alsa) \
- $(use_enable jack) \
- $(use_enable pulseaudio pulse)
-}
diff --git a/media-sound/giada/giada-0.5.7.ebuild b/media-sound/giada/giada-0.5.7.ebuild
deleted file mode 100644
index f1badab876cd..000000000000
--- a/media-sound/giada/giada-0.5.7.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/giada/giada-0.5.7.ebuild,v 1.1 2013/01/22 03:51:00 radhermit Exp $
-
-EAPI=5
-
-inherit flag-o-matic eutils autotools
-
-DESCRIPTION="A free, minimal, hardcore audio tool for djs and live performers"
-HOMEPAGE="http://www.giadamusic.com/"
-SRC_URI="http://www.giadamusic.com/download.php?dist=source&file=${PN}_${PV}_src.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa jack pulseaudio"
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-RDEPEND="media-libs/libsndfile
- media-libs/rtaudio[alsa?,jack?,pulseaudio?]
- x11-libs/fltk:1
- x11-libs/libXpm"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.5.4-flags.patch
- epatch "${FILESDIR}"/${PN}-0.5.4-configure.patch
- eautoreconf
-}
-
-src_configure() {
- append-cppflags -I/usr/include/fltk-1
- append-ldflags -L/usr/$(get_libdir)/fltk-1
-
- econf \
- --target=linux \
- $(use_enable alsa) \
- $(use_enable jack) \
- $(use_enable pulseaudio pulse)
-}