Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mt-daapd/
Date: Thu, 16 Mar 2023 07:14:30
Message-Id: 1678950853.5bf1d0637fb3adf707bc96c5c11a01a42c22004d.fordfrog@gentoo
1 commit: 5bf1d0637fb3adf707bc96c5c11a01a42c22004d
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 16 07:13:39 2023 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 16 07:14:13 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf1d063
7
8 media-sound/mt-daapd: dropped obsolete 0.2.4.2-r1
9
10 Bug: https://bugs.gentoo.org/901263
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/mt-daapd/mt-daapd-0.2.4.2-r1.ebuild | 82 -------------------------
14 1 file changed, 82 deletions(-)
15
16 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
17 deleted file mode 100644
18 index 7400ed7efafd..000000000000
19 --- a/media-sound/mt-daapd/mt-daapd-0.2.4.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,82 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="A multi-threaded implementation of Apple's DAAP server"
30 -HOMEPAGE="https://sourceforge.net/projects/mt-daapd/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 arm ~hppa ~mips ppc sparc x86 ~amd64-linux ~x86-linux"
36 -IUSE="vorbis"
37 -
38 -RDEPEND="
39 - media-libs/libid3tag:=
40 - net-dns/avahi[dbus]
41 - sys-libs/gdbm:=
42 - sys-libs/zlib:=
43 - vorbis? (
44 - media-libs/libvorbis
45 - media-libs/libogg
46 - )"
47 -DEPEND="${RDEPEND}"
48 -BDEPEND="virtual/pkgconfig"
49 -
50 -PATCHES=(
51 - "${FILESDIR}"/${PN}-0.2.3-sparc.patch
52 - "${FILESDIR}"/${PN}-0.2.4.1-libsorder.patch
53 - "${FILESDIR}"/${PN}-0.2.4.1-pidfile.patch
54 - "${FILESDIR}"/${P}-maintainer-mode.patch
55 - "${FILESDIR}"/${P}-oggvorbis.patch
56 -)
57 -
58 -src_prepare() {
59 - default
60 - mv configure.{in,ac} || die
61 - eautoreconf
62 -}
63 -
64 -src_configure() {
65 - econf \
66 - $(use_enable vorbis oggvorbis) \
67 - --disable-maintainer-mode \
68 - --enable-avahi \
69 - --disable-mdns
70 -}
71 -
72 -src_install() {
73 - default
74 -
75 - insinto /etc
76 - newins contrib/mt-daapd.conf mt-daapd.conf.example
77 - doins contrib/mt-daapd.playlist
78 -
79 - newinitd "${FILESDIR}"/${PN}.init.2 ${PN}
80 -
81 - keepdir /var/cache/mt-daapd /etc/mt-daapd.d
82 -}
83 -
84 -pkg_postinst() {
85 - elog
86 - elog "You have to configure your mt-daapd.conf following"
87 - elog "${EROOT}/etc/mt-daapd.conf.example file."
88 - elog
89 -
90 - if use vorbis; then
91 - elog
92 - elog "You need to edit you extensions list in ${EROOT}/etc/mt-daapd.conf"
93 - elog "if you want your mt-daapd to serve ogg files."
94 - elog
95 - fi
96 -
97 - elog
98 - elog "If you want to start more than one ${PN} service, symlink"
99 - elog "${EROOT}/etc/init.d/${PN} to ${EROOT}/etc/init.d/${PN}.<name>, and it will"
100 - elog "load the data from ${EROOT}/etc/${PN}.d/<name>.conf."
101 - elog "Make sure that you have different cache directories for them."
102 - elog
103 -}