diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-08-04 21:09:37 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-08-04 21:09:37 +0000 |
commit | bc2c503e3e8eaacf60de87ff75bcda7dbbbd3b6f (patch) | |
tree | 94ee1747a7d70b0030d25037a2c6a2fad48322b4 /media-sound/mt-daapd | |
parent | upnp local flag for mt-daapd (diff) | |
download | gentoo-2-bc2c503e3e8eaacf60de87ff75bcda7dbbbd3b6f.tar.gz gentoo-2-bc2c503e3e8eaacf60de87ff75bcda7dbbbd3b6f.tar.bz2 gentoo-2-bc2c503e3e8eaacf60de87ff75bcda7dbbbd3b6f.zip |
Version bump for bug 183127.
(Portage version: 2.1.3.3)
Diffstat (limited to 'media-sound/mt-daapd')
-rw-r--r-- | media-sound/mt-daapd/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/mt-daapd/files/digest-mt-daapd-0.3.0_pre1586 | 3 | ||||
-rw-r--r-- | media-sound/mt-daapd/mt-daapd-0.3.0_pre1586.ebuild | 160 |
3 files changed, 170 insertions, 1 deletions
diff --git a/media-sound/mt-daapd/ChangeLog b/media-sound/mt-daapd/ChangeLog index 7823ed24e504..2bedef9492dc 100644 --- a/media-sound/mt-daapd/ChangeLog +++ b/media-sound/mt-daapd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/mt-daapd # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.50 2007/02/17 01:03:12 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.51 2007/08/04 21:09:37 drac Exp $ + +*mt-daapd-0.3.0_pre1586 (04 Aug 2007) + + 04 Aug 2007; Samuli Suominen <drac@gentoo.org> + +mt-daapd-0.3.0_pre1586.ebuild: + Version bump for bug 183127. 17 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Don't abuse $ROOT. diff --git a/media-sound/mt-daapd/files/digest-mt-daapd-0.3.0_pre1586 b/media-sound/mt-daapd/files/digest-mt-daapd-0.3.0_pre1586 new file mode 100644 index 000000000000..16b360629b7d --- /dev/null +++ b/media-sound/mt-daapd/files/digest-mt-daapd-0.3.0_pre1586 @@ -0,0 +1,3 @@ +MD5 1d274d45a06492e1475e0f720175706c mt-daapd-svn-1586.tar.gz 1286592 +RMD160 af6ddf88142d189bbb375479b544201fc3513a5d mt-daapd-svn-1586.tar.gz 1286592 +SHA256 d90e6f9e1752f0dd5a13c38403e8ff9542955f89abee8693abfb78bbe87601ea mt-daapd-svn-1586.tar.gz 1286592 diff --git a/media-sound/mt-daapd/mt-daapd-0.3.0_pre1586.ebuild b/media-sound/mt-daapd/mt-daapd-0.3.0_pre1586.ebuild new file mode 100644 index 000000000000..5be551e9c993 --- /dev/null +++ b/media-sound/mt-daapd/mt-daapd-0.3.0_pre1586.ebuild @@ -0,0 +1,160 @@ +# Copyright 1999-2007 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.3.0_pre1586.ebuild,v 1.1 2007/08/04 21:09:37 drac Exp $ + +inherit eutils flag-o-matic base + +SVN="${PV#*pre}" + +if [[ -n ${SVN} ]] ; then + MY_P="${PN}-svn-${SVN}" + SRC_URI="http://nightlies.mt-daapd.org/${MY_P}.tar.gz" +else + MY_P="${P/_/-}" + SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" +fi + +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="A multi-threaded implementation of Apple's DAAP server" +HOMEPAGE="http://www.mt-daapd.org" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sh ~sparc ~x86" +IUSE="avahi ffmpeg flac gdbm howl musepack sqlite3 upnp vorbis" + +DEPEND="sys-libs/zlib + media-libs/libid3tag + !sqlite3? ( =dev-db/sqlite-2* ) + sqlite3? ( =dev-db/sqlite-3* ) + howl? ( !avahi? ( >=net-misc/howl-0.9.2 ) + avahi? ( net-dns/avahi ) ) + vorbis? ( media-libs/libvorbis media-libs/libogg ) + flac? ( media-libs/flac ) + ffmpeg? ( media-video/ffmpeg ) + musepack? ( media-libs/taglib ) + upnp? ( net-libs/libupnp ) + gdbm? ( sys-libs/gdbm )" + +pkg_setup() { + if use howl && use avahi && ! built_with_use net-dns/avahi howl-compat; then + eerror "You requested avahi support, but this package requires" + eerror "the howl-compat support enabled in net-dns/avahi to work" + eerror "with it." + eerror + eerror "Please recompile net-dns/avahi with +howl-compat." + die "Missing howl-compat support in avahi." + fi +} + +src_compile() { + local myconf="" + local howlincludes + + append-flags -fno-strict-aliasing + + # howl support? + if use howl; then + use avahi && \ + howlincludes="/usr/include/avahi-compat-howl" || \ + howlincludes="/usr/include/howl" + + myconf="${myconf} + --enable-howl + --with-howl-libs=/usr/$(get_libdir) + --with-howl-includes=${howlincludes}" + fi + + # Broken flags only accept enable. + if use flac; then + myconf="${myconf} --enable-flac" + fi + + if use ffmpeg; then + myconf="${myconf} --enable-ffmpeg \ + --with-ffmpeg-includes=/usr/include/ffmpeg" + fi + + if use musepack; then + myconf="${myconf} --enable-musepack" + fi + + if use gdbm; then + myconf="${myconf} --enable-gdbm" + fi + + if use upnp; then + myconf="${myconf} --enable-upnp" + fi + + econf ${myconf} \ + $(use_enable vorbis oggvorbis) \ + $(use_enable !sqlite3 sqlite) \ + $(use_enable sqlite3) + + emake || die "emake failed." + + cp "${FILESDIR}"/${PN}.init.2 "${WORKDIR}"/initd + if ! use howl; then + sed -i -e '/#USEHOWL/d' "${WORKDIR}"/initd + elif ! use avahi; then + sed -i -e 's:#USEHOWL ::' "${WORKDIR}"/initd + else + sed -i -e 's:#USEHOWL ::; s:mDNSResponder:avahi-daemon:' "${WORKDIR}"/initd + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + + insinto /etc + newins "${FILESDIR}"/mt-daapd.conf.example mt-daapd.conf.example + doins contrib/mt-daapd.playlist + + newinitd "${WORKDIR}"/initd ${PN} + + keepdir /var/cache/mt-daapd /etc/mt-daapd.d + + dodoc AUTHORS CREDITS ChangeLog NEWS README TODO +} + +pkg_postinst() { + einfo + elog "You have to configure your mt-daapd.conf following" + elog "/etc/mt-daapd.conf.example file." + einfo + + if use howl; then + use avahi && \ + howlservice="avahi-daemon" || \ + howlservice="mDNSResponder" + + einfo + elog "Since you want to use howl instead of the internal mdnsd" + elog "you need to make sure that you have ${howlservice} configured" + elog "and running to use mt-daapd." + einfo + + if use avahi; then + elog "Avahi support is currently experimental, it does not work" + elog "as intended when using more than one mt-daapd instance." + elog "If you want to run more than one mt-daapd, just use the" + elog "internal mdnsd by building with -howl flag." + fi + fi + + if use vorbis; then + einfo + elog "You need to edit you extensions list in /etc/mt-daapd.conf" + elog "if you want your mt-daapd to serve ogg files." + einfo + fi + + einfo + elog "If you want to start more than one ${PN} service, symlink" + elog "/etc/init.d/${PN} to /etc/init.d/${PN}.<name>, and it will" + elog "load the data from /etc/${PN}.d/<name>.conf." + elog "Make sure that you have different cache directories for them." + einfo +} |