diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-01-12 16:17:38 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-01-12 16:17:38 +0000 |
commit | 2d9dfa47e9c537322355833f75e1a94e25794e1b (patch) | |
tree | 8c624cf11b62b701b1cc7b0316d7c9e9af1bba73 /media-sound | |
parent | New version (diff) | |
download | gentoo-2-2d9dfa47e9c537322355833f75e1a94e25794e1b.tar.gz gentoo-2-2d9dfa47e9c537322355833f75e1a94e25794e1b.tar.bz2 gentoo-2-2d9dfa47e9c537322355833f75e1a94e25794e1b.zip |
Drop old versions.
(Portage version: 2529-svn)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/mt-daapd/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/mt-daapd/files/digest-mt-daapd-0.2.3 | 1 | ||||
-rw-r--r-- | media-sound/mt-daapd/files/digest-mt-daapd-0.2.3-r1 | 1 | ||||
-rw-r--r-- | media-sound/mt-daapd/mt-daapd-0.2.3-r1.ebuild | 101 | ||||
-rw-r--r-- | media-sound/mt-daapd/mt-daapd-0.2.3.ebuild | 84 |
5 files changed, 5 insertions, 188 deletions
diff --git a/media-sound/mt-daapd/ChangeLog b/media-sound/mt-daapd/ChangeLog index 3db49fc757e2..d312432985c1 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.11 2006/01/04 15:10:49 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mt-daapd/ChangeLog,v 1.12 2006/01/12 16:17:38 flameeyes Exp $ + + 12 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> -mt-daapd-0.2.3.ebuild, + -mt-daapd-0.2.3-r1.ebuild: + Drop old versions. 04 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> +files/mt-daapd-0.2.3-sparc.patch, mt-daapd-0.2.3-r2.ebuild: diff --git a/media-sound/mt-daapd/files/digest-mt-daapd-0.2.3 b/media-sound/mt-daapd/files/digest-mt-daapd-0.2.3 deleted file mode 100644 index b3d3908ff384..000000000000 --- a/media-sound/mt-daapd/files/digest-mt-daapd-0.2.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 17aa3fa0601cbe172d18f53489141e5a mt-daapd-0.2.3.tar.gz 406035 diff --git a/media-sound/mt-daapd/files/digest-mt-daapd-0.2.3-r1 b/media-sound/mt-daapd/files/digest-mt-daapd-0.2.3-r1 deleted file mode 100644 index b3d3908ff384..000000000000 --- a/media-sound/mt-daapd/files/digest-mt-daapd-0.2.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 17aa3fa0601cbe172d18f53489141e5a mt-daapd-0.2.3.tar.gz 406035 diff --git a/media-sound/mt-daapd/mt-daapd-0.2.3-r1.ebuild b/media-sound/mt-daapd/mt-daapd-0.2.3-r1.ebuild deleted file mode 100644 index f6c8b425bdb9..000000000000 --- a/media-sound/mt-daapd/mt-daapd-0.2.3-r1.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# 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.3-r1.ebuild,v 1.3 2005/12/01 20:43:55 flameeyes Exp $ - -inherit flag-o-matic eutils - -MY_P="${P/_/-}" - -DESCRIPTION="A multi-threaded implementation of Apple's DAAP server" -HOMEPAGE="http://www.mt-daapd.org/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sh ~x86" -IUSE="debug howl vorbis" - -DEPEND="sys-libs/zlib - media-libs/libid3tag - sys-libs/gdbm - debug? ( dev-util/efence ) - howl? ( >=net-misc/howl-0.9.2 ) - vorbis? ( media-libs/libvorbis )" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-pidfile.patch -} - -src_compile() { - local myconf="" - - # debugging support? - if use debug; then - myconf="${myconf} --enable-debug --enable-debug-memory --enable-efence" - fi - - # howl support? - if use howl; then - myconf="${myconf} --enable-howl" - myconf="${myconf} --with-howl-libs=/usr/$(get_libdir)" - myconf="${myconf} --with-howl-includes=/usr/include/howl" - fi - - # Bug 65723 - if use vorbis; then - myconf="${myconf} --enable-oggvorbis" - fi - - econf ${myconf} || die "configure failed" - emake || die "make failed" - - cp ${FILESDIR}/${PN}.init.2 ${WORKDIR}/initd - use howl && \ - sed -i -e 's:#USEHOWL ::' ${WORKDIR}/initd || \ - sed -i -e '/#USEHOWL/d' ${WORKDIR}/initd -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - - insinto /etc - newins contrib/mt-daapd.conf 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 - einfo "You have to configure your mt-daapd.conf following" - einfo "/etc/mt-daapd.conf.example file." - einfo - - if use howl; then - einfo - einfo "Since you want to use howl instead of the internal mdnsd" - einfo "you need to make sure that you have mDNSResponder configured" - einfo "and running to use mt-daapd." - einfo - fi - - if use vorbis; then - einfo - einfo "You need to edit you extensions list in /etc/mt-daapd.conf" - einfo "if you want your mt-daapd to serve ogg files." - einfo - fi - - einfo - einfo "If you want to start more than one ${PN} service, symlink" - einfo "/etc/init.d/${PN} to /etc/init.d/${PN}.<name>, and it will" - einfo "load the data from /etc/${PN}.d/<name>.conf." - einfo "Make sure that you have different cache directories for them." - einfo -} diff --git a/media-sound/mt-daapd/mt-daapd-0.2.3.ebuild b/media-sound/mt-daapd/mt-daapd-0.2.3.ebuild deleted file mode 100644 index e605bb5f5c53..000000000000 --- a/media-sound/mt-daapd/mt-daapd-0.2.3.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# 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.3.ebuild,v 1.2 2005/10/04 11:21:26 matsuu Exp $ - -inherit flag-o-matic eutils - -MY_P="${P/_/-}" - -DESCRIPTION="A multi-threaded implementation of Apple's DAAP server" -HOMEPAGE="http://www.mt-daapd.org/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sh ~x86" -IUSE="debug howl vorbis" - -DEPEND="sys-libs/zlib - media-libs/libid3tag - sys-libs/gdbm - debug? ( dev-util/efence ) - howl? ( >=net-misc/howl-0.9.2 ) - vorbis? ( media-libs/libvorbis )" - -src_unpack() { - unpack ${A} - cd ${S} - sed -i -e 's:/usr/local:/usr:' contrib/mt-daapd-gentoo || die -} - -src_compile() { - local myconf="" - - # debugging support? - if use debug; then - myconf="${myconf} --enable-debug --enable-debug-memory --enable-efence" - fi - - # howl support? - if use howl; then - myconf="${myconf} --enable-howl" - myconf="${myconf} --with-howl-libs=/usr/$(get_libdir)" - myconf="${myconf} --with-howl-includes=/usr/include/howl" - fi - - # Bug 65723 - if use vorbis; then - myconf="${myconf} --enable-oggvorbis" - fi - - econf ${myconf} || die "configure failed" - emake || die "make failed" -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - - insinto /etc - doins contrib/mt-daapd.conf - doins contrib/mt-daapd.playlist - - newinitd contrib/mt-daapd-gentoo mt-daapd - - keepdir /var/cache/mt-daapd - - dodoc AUTHORS CREDITS ChangeLog INSTALL NEWS README TODO -} - -pkg_postinst() { - if use howl; then - einfo - einfo "Since you want to use howl instead of the internal mdnsd" - einfo "you need to make sure that you have mDNSResponder configured" - einfo "and running to use mt-daapd." - einfo - fi - - if use vorbis; then - einfo - einfo "You need to edit you extensions list in /etc/mt-daapd.conf" - einfo "if you want your mt-daapd to serve ogg files." - einfo - fi -} |