summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2004-04-14 10:15:02 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2004-04-14 10:15:02 +0000
commitd648046353e3096a6d8fc1a2bd73244c78f1f01f (patch)
treec926059ba6869045d75ad9d7bf83d9cc909794cb /media-sound/mpd
parentStable x86. (diff)
downloadhistorical-d648046353e3096a6d8fc1a2bd73244c78f1f01f.tar.gz
historical-d648046353e3096a6d8fc1a2bd73244c78f1f01f.tar.bz2
historical-d648046353e3096a6d8fc1a2bd73244c78f1f01f.zip
Removing old ebuilds.
Diffstat (limited to 'media-sound/mpd')
-rw-r--r--media-sound/mpd/ChangeLog5
-rw-r--r--media-sound/mpd/files/digest-mpd-0.10.11
-rw-r--r--media-sound/mpd/mpd-0.10.1.ebuild54
3 files changed, 4 insertions, 56 deletions
diff --git a/media-sound/mpd/ChangeLog b/media-sound/mpd/ChangeLog
index abac8d1f164b..48f8a517e360 100644
--- a/media-sound/mpd/ChangeLog
+++ b/media-sound/mpd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/mpd
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.21 2004/04/14 02:19:24 weeve Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/ChangeLog,v 1.22 2004/04/14 10:15:02 eradicator Exp $
+
+ 14 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org> mpd-0.10.1.ebuild:
+ Removing old ebuilds.
13 Apr 2004; Jason Wever <weeve@gentoo.org> mpd-0.10.3.ebuild:
Added ~sparc keyword.
diff --git a/media-sound/mpd/files/digest-mpd-0.10.1 b/media-sound/mpd/files/digest-mpd-0.10.1
deleted file mode 100644
index 3abfccdbafc7..000000000000
--- a/media-sound/mpd/files/digest-mpd-0.10.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ed1af721bc64236e47a4252bdef2e0f5 mpd-0.10.1.tar.gz 787064
diff --git a/media-sound/mpd/mpd-0.10.1.ebuild b/media-sound/mpd/mpd-0.10.1.ebuild
deleted file mode 100644
index d4ff8ecf6cd7..000000000000
--- a/media-sound/mpd/mpd-0.10.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.10.1.ebuild,v 1.2 2004/03/30 18:19:57 eradicator Exp $
-
-IUSE="oggvorbis mad"
-
-DESCRIPTION="Music Player Daemon (mpd)"
-SRC_URI="mirror://sourceforge/musicpd/${P}.tar.gz"
-RESTRICT="nomirror"
-HOMEPAGE="http://www.musicpd.org"
-
-KEYWORDS="~x86"
-SLOT="0"
-LICENSE="GPL-2"
-
-DEPEND="oggvorbis? ( media-libs/libvorbis )
- mad? ( media-sound/mad )
- >=media-libs/flac-1.1.0
- >=media-libs/libao-0.8.4
- sys-libs/zlib"
-
-src_compile() {
- local myconf
- myconf=""
-
- use oggvorbis \
- || myconf="${myconf} --disable-ogg --disable-oggtest \
- --disable-vorbistest"
- use mad || myconf="${myconf} --enable-mpd-mad --enable-mpd-id3tag"
-
- econf ${myconf} || 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
-
- exeinto /etc/init.d
- newexe ${FILESDIR}/mpd.rc6 mpd
- insinto /etc/conf.d
- newins ${FILESDIR}/mpd.conf mpd
-}
-
-pkg_postinst() {
- einfo "libao has issues with the ALSA drivers, please refer to the FAQ"
- einfo "http://musicpd.sourceforge.net/faq.php"
- einfo
- einfo " You need to set PORT, MUSIC_DIR, PLAYLIST_DIR,"
- einfo " LOG_FILE and ERROR_FILE in /etc/conf.d/mpd"
-}