blob: 47ee6484cd2758cbf608efe8fabf27b4ad108157 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils linux-info systemd tmpfiles toolchain-funcs user
DESCRIPTION="DLNA/UPnP-AV compliant media server"
HOMEPAGE="https://sourceforge.net/projects/minidlna/"
SRC_URI="
https://downloads.sourceforge.net/project/minidlna/${PN}/${PV}/${P}.tar.gz
https://dev.gentoo.org/~xmw/minidlna-gentoo-artwork.patch.xz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="amd64 arm x86"
IUSE="netgear readynas zeroconf"
RDEPEND="dev-db/sqlite:3
media-libs/flac:=
media-libs/libexif:=
media-libs/libid3tag:=
media-libs/libogg:=
media-libs/libvorbis:=
media-video/ffmpeg:0=
virtual/jpeg:0=
zeroconf? ( net-dns/avahi:= )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
CONFIG_CHECK="~INOTIFY_USER"
PATCHES=(
"${WORKDIR}"/minidlna-gentoo-artwork.patch
)
src_prepare() {
sed -e "/log_dir/s:/var/log:/var/log/minidlna:" \
-e "/db_dir/s:/var/cache/:/var/lib/:" \
-i minidlna.conf || die
default
}
src_configure() {
local myconf=(
--with-db-path=/var/lib/minidlna
--with-log-path=/var/log/minidlna
--enable-tivo
$(use_enable netgear)
$(use_enable readynas)
)
use zeroconf || myconf+=(
ac_cv_lib_avahi_client_avahi_threaded_poll_new=no
)
econf "${myconf[@]}"
}
src_test() {
:
}
src_install() {
default
#bug 536532
dosym ../sbin/minidlnad /usr/bin/minidlna
insinto /etc
doins minidlna.conf
newconfd "${FILESDIR}"/minidlna-1.0.25.confd minidlna
newinitd "${FILESDIR}"/minidlna-1.1.5.initd minidlna
systemd_newunit "${FILESDIR}"/minidlna-1.1.2.service minidlna.service
newtmpfiles - minidlna.conf <<-EOF
d /run/minidlna 0755 minidlna minidlna -
EOF
keepdir /var/{lib,log}/minidlna
doman minidlnad.8 minidlna.conf.5
}
pkg_preinst() {
local my_is_new=yes
[[ -d ${EROOT}/var/lib/minidlna ]] && my_is_new=no
enewgroup minidlna
enewuser minidlna -1 -1 /var/lib/minidlna minidlna
fowners minidlna:minidlna /var/{lib,log}/minidlna
fperms 0750 /var/{lib,log}/minidlna
if [[ -d ${EROOT}/var/lib/minidlna && ${my_is_new} == yes ]]; then
# created by above enewuser command w/ wrong group
# and permissions
chown minidlna:minidlna "${EROOT}"/var/lib/minidlna || die
chmod 0750 "${EROOT}"/var/lib/minidlna || die
# if user already exists, but /var/lib/minidlna is missing
# rely on ${D}/var/lib/minidlna created in src_install
fi
}
pkg_postinst() {
elog "minidlna now runs as minidlna:minidlna (bug 426726),"
elog "logfile is moved to /var/log/minidlna/minidlna.log,"
elog "cache is moved to /var/lib/minidlna."
elog "Please edit /etc/conf.d/minidlna and file ownerships to suit your needs."
tmpfiles_process minidlna.conf
}
|