diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-05-28 13:41:25 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-05-28 13:41:25 +0000 |
commit | 54dce49b0cbd00c920a5d7fc70f136e29bd0407a (patch) | |
tree | 319dff310780141c680a0a98a2b895b6c2b989ee /media-sound/mt-daapd | |
parent | Dont make use of the deprecated oggvorbis useflag any longer, see #94254. (diff) | |
download | historical-54dce49b0cbd00c920a5d7fc70f136e29bd0407a.tar.gz historical-54dce49b0cbd00c920a5d7fc70f136e29bd0407a.tar.bz2 historical-54dce49b0cbd00c920a5d7fc70f136e29bd0407a.zip |
cosmetic changes
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'media-sound/mt-daapd')
-rw-r--r-- | media-sound/mt-daapd/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/mt-daapd/Manifest | 10 | ||||
-rw-r--r-- | media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild | 11 |
3 files changed, 14 insertions, 12 deletions
diff --git a/media-sound/mt-daapd/ChangeLog b/media-sound/mt-daapd/ChangeLog index f8af938f1b5d..73fac53e2f7a 100644 --- a/media-sound/mt-daapd/ChangeLog +++ b/media-sound/mt-daapd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/mt-daapd # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.2 2005/05/25 18:38:14 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.3 2005/05/28 13:41:25 luckyduck Exp $ + + 28 May 2005; Jan Brinkmann <luckyduck@gentoo.org> mt-daapd-0.2.1.1.ebuild: + cosmetic changes 25 May 2005; Jan Brinkmann <luckyduck@gentoo.org> mt-daapd-0.2.1.1.ebuild: stable on amd64 and x86 diff --git a/media-sound/mt-daapd/Manifest b/media-sound/mt-daapd/Manifest index 9c512aa65271..c24159cd612a 100644 --- a/media-sound/mt-daapd/Manifest +++ b/media-sound/mt-daapd/Manifest @@ -1,15 +1,15 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 87baed071d6cfb28791d429c080bc53c mt-daapd-0.2.1.1.ebuild 1969 -MD5 04e46790bcdf11b1ab540059c624b1b6 ChangeLog 579 +MD5 0db4901b830e970e27142d227774b3cd mt-daapd-0.2.1.1.ebuild 1935 +MD5 8e54b712e6db5ca9827e49490c3d5d06 ChangeLog 676 MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 MD5 804311ec22b1fba76a61411d0c752a15 files/digest-mt-daapd-0.2.1.1 68 MD5 d14aca83cf21b8c519b42962ba276e42 files/mt-daapd.init 540 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) -iD8DBQFClMYx06ebR+OMO78RAm1tAJ44UaGt6moh9t06oWKCZmJjJaySNgCgkh2r -VKK2rQQ4aeQ2m5ZFEcvlhow= -=O4UJ +iD8DBQFCmHUd06ebR+OMO78RAlTKAKCJ/oWnT2WpJlvvuB900CXJFH7SaACfR99R +q0O6TH3fpe5C1LoLd0me0Qs= +=2Wmi -----END PGP SIGNATURE----- diff --git a/media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild b/media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild index 6c19a2afe560..bd015fdfa9b4 100644 --- a/media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild +++ b/media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild,v 1.2 2005/05/25 18:38:14 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/mt-daapd-0.2.1.1.ebuild,v 1.3 2005/05/28 13:41:25 luckyduck Exp $ inherit flag-o-matic eutils @@ -18,8 +18,8 @@ IUSE="debug howl vorbis" DEPEND="sys-libs/zlib media-libs/libid3tag sys-libs/gdbm - howl? ( >=net-misc/howl-0.9.2 ) debug? ( dev-util/efence ) + howl? ( >=net-misc/howl-0.9.2 ) vorbis? ( media-libs/libvorbis )" src_compile() { @@ -38,10 +38,9 @@ src_compile() { myconf="--disable-howl" fi - # vorbis support? - use vorbis && myconf="${myconf} --enable-oggvorbis" - - econf ${myconf} || die "configure failed" + econf \ + $(use_enable vorbis oggvorbis) \ + ${myconf} || die "configure failed" emake || die "make failed" } |