summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Sapp <nixphoeni@gentoo.org>2013-01-22 00:45:11 +0000
committerJoe Sapp <nixphoeni@gentoo.org>2013-01-22 00:45:11 +0000
commit63a935db28e68f9f32f231e9b7b39ed74f063cbb (patch)
treea8eab4dc6217750c8e34606bf1e80dc86e330fad /media-sound
parentVersion bump. (diff)
downloadgentoo-2-63a935db28e68f9f32f231e9b7b39ed74f063cbb.tar.gz
gentoo-2-63a935db28e68f9f32f231e9b7b39ed74f063cbb.tar.bz2
gentoo-2-63a935db28e68f9f32f231e9b7b39ed74f063cbb.zip
Removed old version; update copyright
(Portage version: 2.1.11.47/cvs/Linux x86_64, signed Manifest commit with key B5BBDC30)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/xwax/ChangeLog5
-rw-r--r--media-sound/xwax/xwax-1.0.ebuild83
-rw-r--r--media-sound/xwax/xwax-1.2.ebuild4
3 files changed, 6 insertions, 86 deletions
diff --git a/media-sound/xwax/ChangeLog b/media-sound/xwax/ChangeLog
index 6d56e6ade7ed..fddd8b38558c 100644
--- a/media-sound/xwax/ChangeLog
+++ b/media-sound/xwax/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/xwax
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.45 2013/01/22 00:37:40 nixphoeni Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.46 2013/01/22 00:45:11 nixphoeni Exp $
+
+ 22 Jan 2013; Joe Sapp <nixphoeni@gentoo.org> -xwax-1.0.ebuild:
+ Removed old version; update copyright
22 Jan 2013; Joe Sapp <nixphoeni@gentoo.org> metadata.xml:
Remove old flags
diff --git a/media-sound/xwax/xwax-1.0.ebuild b/media-sound/xwax/xwax-1.0.ebuild
deleted file mode 100644
index 3a3b3ae6ead5..000000000000
--- a/media-sound/xwax/xwax-1.0.ebuild
+++ /dev/null
@@ -1,83 +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/xwax/xwax-1.0.ebuild,v 1.5 2012/02/25 15:10:13 ssuominen Exp $
-
-EAPI=4
-inherit toolchain-funcs
-
-DESCRIPTION="Digital vinyl emulation software"
-HOMEPAGE="http://www.xwax.co.uk/"
-SRC_URI="http://www.xwax.co.uk/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="alsa jack oss cdda mp3 +fallback"
-REQUIRED_USE="|| ( cdda mp3 fallback )
- || ( alsa jack oss )"
-
-RDEPEND="sys-libs/glibc
- media-libs/libsdl
- media-libs/sdl-ttf
- media-fonts/dejavu
- alsa? ( media-libs/alsa-lib )
- jack? ( media-sound/jack-audio-connection-kit )
- cdda? ( media-sound/cdparanoia )
- mp3? ( || ( media-sound/mpg123 media-sound/mpg321 ) )
- fallback? ( virtual/ffmpeg )"
-DEPEND="${RDEPEND}"
-
-DOCS="README CHANGES"
-
-src_prepare() {
- # Remove the forced optimization from 'CFLAGS' and 'LDFLAGS' in
- # the Makefile
- # Also remove the dependency on the .version target so we don't need
- # git just to build
- sed -i -e 's/\(^\(LD\|C\)FLAGS.*\)-O[0-9]\(.*\)/\1\3/g' \
- -e 's/^xwax\.o:.*\.version//' \
- Makefile || die "sed failed"
-
- # Replace any decoder commands in the import script, if necessary
- if [[ `use mp3` ]]; then
- # mpg123 is upstream's default
- if has_version media-sound/mpg123; then
- TO="mpg123"
- FROM="mpg321"
- # Otherwise, use mpg321
- else
- TO="mpg321"
- FROM="mpg123"
- fi
- debug-print "found ${TO}"
- sed -i -e "s:${FROM}:${TO}:g" import || \
- die "problem converting xwax-import to use ${TO}"
- fi
-}
-
-src_configure() {
- tc-export CC
- econf \
- --prefix "${EROOT}usr" \
- $(use_enable alsa) \
- $(use_enable jack) \
- $(use_enable oss)
-}
-
-src_compile() {
- # EXECDIR is the default directory in which xwax will look for
- # the 'xwax-import' and 'xwax-scan' scripts
- emake EXECDIR="\$(BINDIR)" VERSION="${PV}"
-}
-
-src_install() {
- # This is easier than setting all the environment variables
- # needed, running the sed script required to get the man directory
- # correct, and removing the GPL-2 after a 'make install' run
- dobin xwax || die "failed to install xwax"
- newbin import xwax-import || die "failed to install xwax-import"
- newbin scan xwax-scan || die "failed to install xwax-scan"
- doman xwax.1 || die "failed to install man page"
-
- dodoc ${DOCS} || die "failed to install docs"
-}
diff --git a/media-sound/xwax/xwax-1.2.ebuild b/media-sound/xwax/xwax-1.2.ebuild
index 43caf3665e8b..59433c76e207 100644
--- a/media-sound/xwax/xwax-1.2.ebuild
+++ b/media-sound/xwax/xwax-1.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.2.ebuild,v 1.5 2012/08/23 19:10:03 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.2.ebuild,v 1.6 2013/01/22 00:45:11 nixphoeni Exp $
EAPI=4
inherit toolchain-funcs