blob: 4f741c0822fd8c95f5f52c2f60414dd570cab1ab (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/minidlna/minidlna-1.0.24.ebuild,v 1.2 2012/05/05 03:20:42 jdhore Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="server software with the aim of being fully compliant with DLNA/UPnP-AV clients"
HOMEPAGE="http://minidlna.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src.tar.gz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND="dev-db/sqlite
media-libs/flac
media-libs/libexif
media-libs/libid3tag
media-libs/libogg
media-libs/libvorbis
virtual/ffmpeg
virtual/jpeg"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.0.18-Makefile.patch
}
src_configure() {
./genconfig.sh || die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
emake DESTDIR="${D}" install install-conf
newconfd "${FILESDIR}"/${PN}-1.0.23.confd ${PN}
newinitd "${FILESDIR}"/${PN}-1.0.23-r1.initd ${PN}
dodoc README TODO
}
pkg_postinst() {
ewarn "minidlna no longer runs as root:root, per bug 394373."
ewarn "Please edit /etc/conf.d/${PN} to suit your needs."
}
|