diff options
Diffstat (limited to 'media-sound/mpd/mpd-0.11.1-r2.ebuild')
-rw-r--r-- | media-sound/mpd/mpd-0.11.1-r2.ebuild | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/media-sound/mpd/mpd-0.11.1-r2.ebuild b/media-sound/mpd/mpd-0.11.1-r2.ebuild new file mode 100644 index 000000000000..82667985c6a5 --- /dev/null +++ b/media-sound/mpd/mpd-0.11.1-r2.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.11.1-r2.ebuild,v 1.1 2004/07/23 00:13:03 ferringb Exp $ + +inherit eutils + +IUSE="oggvorbis mad aac audiofile ipv6 flac droproot mikmod" + +DESCRIPTION="Music Player Daemon (mpd)" +SRC_URI="mirror://sourceforge/musicpd/${P}.tar.gz" +HOMEPAGE="http://www.musicpd.org" + +KEYWORDS="~x86 ~amd64 ~sparc ~ppc" +SLOT="0" +LICENSE="GPL-2" + +DEPEND="oggvorbis? ( media-libs/libvorbis ) + mad? ( media-libs/libmad + media-libs/libid3tag ) + aac? ( >=media-libs/faad2-2.0_rc2 ) + audiofile? ( media-libs/audiofile ) + flac? ( >=media-libs/flac-1.1.0 ) + mikmod? ( >=media-libs/libmikmod ) + alsa? ( media-libs/alsa-lib ) + >=media-libs/libao-0.8.4 + sys-libs/zlib" + +src_compile() { + #flip on/off the support, and test. + econf `use_enable aac` \ + `use_enable oggvorbis ogg` \ + `use_enable oggvorbis oggtest` \ + `use_enable oggvorbis vorbistest` \ + `use_enable audiofile` \ + `use_enable audiofile audiofiletest` \ + `use_enable ipv6` \ + `use_enable flac libFLACtest` \ + `use_enable flac` \ + `use_enable !mad mpd-mad` \ + `use_enable !mad id3tag` \ + `use_enable mikmod libmikmodtest` \ + `use_enable mikmod mod` || die "could not configure" + + emake || die "emake failed" +} + +src_install() { + emake install DESTDIR=${D} || die + rm -rf ${D}/usr/share/doc/mpd/ + dodoc COPYING ChangeLog INSTALL README TODO UPGRADING + dodoc doc/COMMANDS doc/mpdconf.example + + insinto /etc + newins doc/mpdconf.example mpd.conf + + exeinto /etc/init.d + newexe ${FILESDIR}/mpd.rc6 mpd + + if use droproot; then + dosed 's:^#user.*$:user "mpd":' /etc/mpd.conf + fi + dosed 's:^#bind.*$:bind_to_address "localhost":' /etc/mpd.conf + dosed 's:^port.*$:port "6600":' /etc/mpd.conf + dosed 's:^music_directory.*$:music_directory "/usr/share/mpd/music":' /etc/mpd.conf + dosed 's:^playlist_directory.*$:playlist_directory "/usr/share/mpd/playlists":' /etc/mpd.conf + dosed 's:^log_file.*$:log_file "/var/log/mpd.log":' /etc/mpd.conf + dosed 's:^error_file.*$:error_file "/var/log/mpd.error.log":' /etc/mpd.conf +} + +pkg_preinst() { + if use droproot; then + echo "adding user" + enewuser mpd '' '' '' audio || die "problem adding user mpd" + fi +} + +pkg_postinst() { + einfo "libao prior to 0.8.4 has issues with the ALSA drivers" + einfo "please refer to the FAQ" + einfo "http://musicpd.sourceforge.net/faq.php if you are having problems." + einfo + einfo "There have been a few changes to the default config as of late for security reason." + einfo "If the use flag droproot is enabled, mpd runs as user mpd rather then root; this will be a default" + einfo "in later versions, rather then enabled via use flag." + einfo + einfo "Also, the default config now binds the daemon strictly to localhost, rather then all available IPs." +} |