summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2023-03-16 08:13:39 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2023-03-16 08:14:13 +0100
commit5bf1d0637fb3adf707bc96c5c11a01a42c22004d (patch)
treefee9e8ff842ad9c9c38445cdca2d514a005712a4 /media-sound
parentnet-mail/dovecot: drop 2.3.19.1-r1, 2.3.20 (diff)
downloadgentoo-5bf1d0637fb3adf707bc96c5c11a01a42c22004d.tar.gz
gentoo-5bf1d0637fb3adf707bc96c5c11a01a42c22004d.tar.bz2
gentoo-5bf1d0637fb3adf707bc96c5c11a01a42c22004d.zip
media-sound/mt-daapd: dropped obsolete 0.2.4.2-r1
Bug: https://bugs.gentoo.org/901263 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/mt-daapd/mt-daapd-0.2.4.2-r1.ebuild82
1 files changed, 0 insertions, 82 deletions
diff --git a/media-sound/mt-daapd/mt-daapd-0.2.4.2-r1.ebuild b/media-sound/mt-daapd/mt-daapd-0.2.4.2-r1.ebuild
deleted file mode 100644
index 7400ed7efafd..000000000000
--- a/media-sound/mt-daapd/mt-daapd-0.2.4.2-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A multi-threaded implementation of Apple's DAAP server"
-HOMEPAGE="https://sourceforge.net/projects/mt-daapd/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~mips ppc sparc x86 ~amd64-linux ~x86-linux"
-IUSE="vorbis"
-
-RDEPEND="
- media-libs/libid3tag:=
- net-dns/avahi[dbus]
- sys-libs/gdbm:=
- sys-libs/zlib:=
- vorbis? (
- media-libs/libvorbis
- media-libs/libogg
- )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.2.3-sparc.patch
- "${FILESDIR}"/${PN}-0.2.4.1-libsorder.patch
- "${FILESDIR}"/${PN}-0.2.4.1-pidfile.patch
- "${FILESDIR}"/${P}-maintainer-mode.patch
- "${FILESDIR}"/${P}-oggvorbis.patch
-)
-
-src_prepare() {
- default
- mv configure.{in,ac} || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable vorbis oggvorbis) \
- --disable-maintainer-mode \
- --enable-avahi \
- --disable-mdns
-}
-
-src_install() {
- default
-
- insinto /etc
- newins contrib/mt-daapd.conf mt-daapd.conf.example
- doins contrib/mt-daapd.playlist
-
- newinitd "${FILESDIR}"/${PN}.init.2 ${PN}
-
- keepdir /var/cache/mt-daapd /etc/mt-daapd.d
-}
-
-pkg_postinst() {
- elog
- elog "You have to configure your mt-daapd.conf following"
- elog "${EROOT}/etc/mt-daapd.conf.example file."
- elog
-
- if use vorbis; then
- elog
- elog "You need to edit you extensions list in ${EROOT}/etc/mt-daapd.conf"
- elog "if you want your mt-daapd to serve ogg files."
- elog
- fi
-
- elog
- elog "If you want to start more than one ${PN} service, symlink"
- elog "${EROOT}/etc/init.d/${PN} to ${EROOT}/etc/init.d/${PN}.<name>, and it will"
- elog "load the data from ${EROOT}/etc/${PN}.d/<name>.conf."
- elog "Make sure that you have different cache directories for them."
- elog
-}