blob: 127ea9446088476f752d1db371c0d7f0a6ed23b5 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/minidlna/minidlna-1.0.19.ebuild,v 1.1 2011/04/06 18:51:49 xmw Exp $
EAPI=2
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}
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.0.18-Makefile.patch
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
emake DESTDIR="${D}" install || die
newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
dodoc README TODO || die
}
|