summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2012-02-23 09:55:08 +0000
committerPacho Ramos <pacho@gentoo.org>2012-02-23 09:55:08 +0000
commitf519e28cc92c0ec7236508a999a2e1a0ebf091a9 (patch)
treecacb3ccd71c34b0c9cb95821326fae8b9dbda745 /media-sound/mt-daapd
parentDrop mDNSResponder support due its removal, bug #403537. (diff)
downloadgentoo-2-f519e28cc92c0ec7236508a999a2e1a0ebf091a9.tar.gz
gentoo-2-f519e28cc92c0ec7236508a999a2e1a0ebf091a9.tar.bz2
gentoo-2-f519e28cc92c0ec7236508a999a2e1a0ebf091a9.zip
Drop mDNSResponder support due its removal, bug #403537 (with ssuominen approval).
(Portage version: 2.1.10.48/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/mt-daapd')
-rw-r--r--media-sound/mt-daapd/ChangeLog8
-rw-r--r--media-sound/mt-daapd/mt-daapd-0.2.4.2.ebuild26
2 files changed, 13 insertions, 21 deletions
diff --git a/media-sound/mt-daapd/ChangeLog b/media-sound/mt-daapd/ChangeLog
index b6713e1d3755..bc9243c06f2a 100644
--- a/media-sound/mt-daapd/ChangeLog
+++ b/media-sound/mt-daapd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/mt-daapd
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.68 2011/01/17 00:34:44 lack Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.69 2012/02/23 09:55:08 pacho Exp $
+
+ 23 Feb 2012; Pacho Ramos <pacho@gentoo.org> mt-daapd-0.2.4.2.ebuild:
+ Drop mDNSResponder support due its removal, bug #403537 (with ssuominen
+ approval).
17 Jan 2011; Jim Ramsay <lack@gentoo.org>
files/mt-daapd-0.2.4.2-oggvorbis.patch:
diff --git a/media-sound/mt-daapd/mt-daapd-0.2.4.2.ebuild b/media-sound/mt-daapd/mt-daapd-0.2.4.2.ebuild
index 26d8d92c46c4..8279c708e576 100644
--- a/media-sound/mt-daapd/mt-daapd-0.2.4.2.ebuild
+++ b/media-sound/mt-daapd/mt-daapd-0.2.4.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 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.4.2.ebuild,v 1.8 2010/01/07 14:39:07 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/mt-daapd-0.2.4.2.ebuild,v 1.9 2012/02/23 09:55:08 pacho Exp $
EAPI=2
inherit autotools eutils
@@ -12,12 +12,11 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm ~mips ppc sh sparc x86 ~amd64-linux ~x86-linux"
-IUSE="+avahi vorbis"
+IUSE="vorbis"
RDEPEND="media-libs/libid3tag
sys-libs/gdbm
- avahi? ( net-dns/avahi[dbus] )
- !avahi? ( net-misc/mDNSResponder )
+ net-dns/avahi[dbus]
vorbis? ( media-libs/libvorbis )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
@@ -25,11 +24,7 @@ DEPEND="${RDEPEND}
src_prepare() {
cp "${FILESDIR}"/${PN}.init.2 initd
- if use avahi; then
- sed -i -e 's:#USEHOWL need mDNSResponderPosix:need avahi-daemon:' initd
- else
- sed -i -e 's:#USEHOWL ::' initd
- fi
+ sed -i -e 's:#USEHOWL need mDNSResponderPosix:need avahi-daemon:' initd
epatch "${FILESDIR}"/${PN}-0.2.3-sparc.patch \
"${FILESDIR}"/${PN}-0.2.4.1-libsorder.patch \
@@ -40,17 +35,10 @@ src_prepare() {
}
src_configure() {
- local myconf
-
- if use avahi; then
- myconf="--enable-avahi --disable-mdns"
- else
- myconf="--disable-avahi --enable-mdns"
- fi
-
econf $(use_enable vorbis oggvorbis) \
--disable-maintainer-mode \
- ${myconf}
+ --enable-avahi \
+ --disable-mdns
}
src_install() {