* [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-0.9_beta2.ebuild xwax-0.9_beta1.ebuild
@ 2011-01-25 2:28 Joe Sapp (nixphoeni)
0 siblings, 0 replies; only message in thread
From: Joe Sapp (nixphoeni) @ 2011-01-25 2:28 UTC (permalink / raw
To: gentoo-commits
nixphoeni 11/01/25 02:28:35
Modified: ChangeLog
Added: xwax-0.9_beta2.ebuild
Removed: xwax-0.9_beta1.ebuild
Log:
Bumped beta version
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Revision Changes Path
1.24 media-sound/xwax/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/xwax/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/xwax/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/xwax/ChangeLog?r1=1.23&r2=1.24
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog 4 Jan 2011 03:15:43 -0000 1.23
+++ ChangeLog 25 Jan 2011 02:28:35 -0000 1.24
@@ -1,6 +1,12 @@
# ChangeLog for media-sound/xwax
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.23 2011/01/04 03:15:43 nixphoeni Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.24 2011/01/25 02:28:35 nixphoeni Exp $
+
+*xwax-0.9_beta2 (25 Jan 2011)
+
+ 25 Jan 2011; Joe Sapp <nixphoeni@gentoo.org> -xwax-0.9_beta1.ebuild,
+ +xwax-0.9_beta2.ebuild:
+ Bumped beta version
*xwax-0.9_beta1 (04 Jan 2011)
1.1 media-sound/xwax/xwax-0.9_beta2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/xwax/xwax-0.9_beta2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/xwax/xwax-0.9_beta2.ebuild?rev=1.1&content-type=text/plain
Index: xwax-0.9_beta2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-0.9_beta2.ebuild,v 1.1 2011/01/25 02:28:35 nixphoeni Exp $
EAPI=3
inherit toolchain-funcs
MY_PV="${PV/_/-}"
DESCRIPTION="Digital vinyl emulation software"
HOMEPAGE="http://www.xwax.co.uk/"
SRC_URI="http://www.xwax.co.uk/testing/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
# These make sure the user can decode the files he or she cares about by
# setting appropriate runtime depends and (perhaps) configuring the import
# script
IUSE_XWAX_DECODERS="xwax_decoders_aac xwax_decoders_cd xwax_decoders_flac \
+xwax_decoders_mp3 xwax_decoders_ogg xwax_decoders_misc"
IUSE="alsa jack ${IUSE_XWAX_DECODERS}"
RDEPEND="media-libs/libsdl
media-libs/sdl-ttf
media-fonts/dejavu
alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )
xwax_decoders_aac? ( media-libs/faad2 )
xwax_decoders_cd? ( media-sound/cdparanoia )
xwax_decoders_flac? ( media-libs/flac )
xwax_decoders_mp3? ( || ( media-sound/mpg123 media-sound/mpg321 ) )
xwax_decoders_ogg? ( media-sound/vorbis-tools )
xwax_decoders_misc? ( media-video/ffmpeg )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-${MY_PV}"
DOCS="README CHANGES"
src_prepare() {
# Remove the forced optimization from 'CFLAGS' and 'LDFLAGS' in
# the Makefile
sed -i -e 's:\(^CFLAGS.*\)-O[0-9]\(.*\):\1\2:' \
-e 's:\(^LDFLAGS.*\)-O[0-9]\(.*\):\1\2:' \
Makefile || die "sed failed"
}
src_configure() {
tc-export CC
econf \
$(use_enable alsa) \
$(use_enable jack)
}
src_compile() {
# EXECDIR is the default directory in which xwax will look for
# the 'xwax-import' and 'xwax-scan' scripts
emake PREFIX="${EROOT}usr" EXECDIR="${EROOT}usr/bin"
}
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"
# Replace any decoder commands in the import script, if necessary
if use xwax_decoders_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" "${D}/usr/bin/xwax-import" || \
die "problem converting xwax-import to use ${TO}"
fi
dodoc ${DOCS} || die "failed to install docs"
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-01-25 2:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-25 2:28 [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-0.9_beta2.ebuild xwax-0.9_beta1.ebuild Joe Sapp (nixphoeni)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox