vapier 14/04/29 01:34:45 Modified: timidity++-2.14.0-r1.ebuild ChangeLog Log: Tweak style to make it easier to maintain. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.3 media-sound/timidity++/timidity++-2.14.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/timidity++/timidity++-2.14.0-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/timidity++/timidity++-2.14.0-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/timidity++/timidity++-2.14.0-r1.ebuild?r1=1.2&r2=1.3 Index: timidity++-2.14.0-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/timidity++/timidity++-2.14.0-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- timidity++-2.14.0-r1.ebuild 3 May 2013 12:03:50 -0000 1.2 +++ timidity++-2.14.0-r1.ebuild 29 Apr 2014 01:34:45 -0000 1.3 @@ -1,9 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity++/timidity++-2.14.0-r1.ebuild,v 1.2 2013/05/03 12:03:50 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity++/timidity++-2.14.0-r1.ebuild,v 1.3 2014/04/29 01:34:45 vapier Exp $ EAPI=5 -inherit autotools eutils elisp-common user systemd +inherit autotools eutils elisp-common user systemd toolchain-funcs MY_PV=${PV/_/-} MY_P=TiMidity++-${MY_PV} @@ -57,31 +57,30 @@ src_configure() { export EXTRACFLAGS="${CFLAGS}" #385817 - local myconf + local myconf=() local audios - use flac && audios="${audios},flac" - use speex && audios="${audios},speex" - use vorbis && audios="${audios},vorbis" - - use oss && audios="${audios},oss" - use jack && audios="${audios},jack" - use ao && audios="${audios},ao" + use flac && audios+=",flac" + use speex && audios+=",speex" + use vorbis && audios+=",vorbis" + use oss && audios+=",oss" + use jack && audios+=",jack" + use ao && audios+=",ao" if use nas; then - audios="${audios},nas" - myconf="${myconf} --with-nas-library=/usr/$(get_libdir)/libaudio.so --with-x" + audios+=",nas" + myconf+=( --with-nas-library="/usr/$(get_libdir)/libaudio.so" --with-x ) use X || ewarn "Basic X11 support will be enabled because required by nas." fi if use alsa; then - audios="${audios},alsa" - myconf="${myconf} --with-default-output=alsa --enable-alsaseq" + audios+=",alsa" + myconf+=( --with-default-output=alsa --enable-alsaseq ) fi # We disable motif by default and then only enable it if it's requested. if use motif; then - myconf="${myconf} --enable-motif --with-x" + myconf+=( --enable-motif --with-x ) use X || ewarn "Basic X11 support will be enabled because required by motif." fi @@ -106,7 +105,7 @@ $(use_enable gtk) \ $(use_enable tk tcltk) \ --disable-motif \ - ${myconf} + "${myconf[@]}" } src_install() { 1.158 media-sound/timidity++/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/timidity++/ChangeLog?rev=1.158&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/timidity++/ChangeLog?rev=1.158&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/timidity++/ChangeLog?r1=1.157&r2=1.158 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-sound/timidity++/ChangeLog,v retrieving revision 1.157 retrieving revision 1.158 diff -u -r1.157 -r1.158 --- ChangeLog 3 May 2013 12:03:50 -0000 1.157 +++ ChangeLog 29 Apr 2014 01:34:45 -0000 1.158 @@ -1,6 +1,9 @@ # ChangeLog for media-sound/timidity++ -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity++/ChangeLog,v 1.157 2013/05/03 12:03:50 ulm Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/timidity++/ChangeLog,v 1.158 2014/04/29 01:34:45 vapier Exp $ + + 29 Apr 2014; Mike Frysinger <[email protected]> timidity++-2.14.0-r1.ebuild: + Tweak style to make it easier to maintain. 03 May 2013; Ulrich Müller <[email protected]> timidity++-2.13.2-r13.ebuild, timidity++-2.13.2-r14.ebuild, timidity++-2.14.0.ebuild,
