Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/minidlna: ChangeLog minidlna-1.0.23.ebuild
Date: Sun, 29 Jan 2012 00:33:37
Message-Id: 20120129003327.247E82004B@flycatcher.gentoo.org
1 xmw 12/01/29 00:33:27
2
3 Modified: ChangeLog
4 Added: minidlna-1.0.23.ebuild
5 Log:
6 Version bump. No longer run as root per default (thanks Yuri Karaban, bug 394373)
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 net-misc/minidlna/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/minidlna/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/minidlna/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/minidlna/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/minidlna/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 14 Nov 2011 01:48:33 -0000 1.11
24 +++ ChangeLog 29 Jan 2012 00:33:26 -0000 1.12
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-misc/minidlna
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/minidlna/ChangeLog,v 1.11 2011/11/14 01:48:33 xmw Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/minidlna/ChangeLog,v 1.12 2012/01/29 00:33:26 xmw Exp $
31 +
32 +*minidlna-1.0.23 (29 Jan 2012)
33 +
34 + 29 Jan 2012; Michael Weber <xmw@g.o> +minidlna-1.0.23.ebuild,
35 + +files/minidlna-1.0.23.confd, +files/minidlna-1.0.23.initd:
36 + Version bump. No longer run as root per default (thanks Yuri Karaban, bug
37 + 394373)
38
39 14 Nov 2011; Michael Weber <xmw@g.o> minidlna-1.0.22.ebuild:
40 remove whitespace
41
42
43
44 1.1 net-misc/minidlna/minidlna-1.0.23.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/minidlna/minidlna-1.0.23.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/minidlna/minidlna-1.0.23.ebuild?rev=1.1&content-type=text/plain
48
49 Index: minidlna-1.0.23.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/minidlna/minidlna-1.0.23.ebuild,v 1.1 2012/01/29 00:33:26 xmw Exp $
54
55 EAPI=4
56
57 inherit eutils toolchain-funcs
58
59 DESCRIPTION="server software with the aim of being fully compliant with DLNA/UPnP-AV clients"
60 HOMEPAGE="http://minidlna.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src.tar.gz"
62
63 LICENSE="BSD GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~x86"
66 IUSE=""
67
68 RDEPEND="dev-db/sqlite
69 media-libs/flac
70 media-libs/libexif
71 media-libs/libid3tag
72 media-libs/libogg
73 media-libs/libvorbis
74 virtual/ffmpeg
75 virtual/jpeg"
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig"
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${PN}-1.0.18-Makefile.patch
81 }
82
83 src_configure() {
84 ./genconfig.sh || die
85 }
86
87 src_compile() {
88 emake CC="$(tc-getCC)"
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install
93
94 newconfd "${FILESDIR}"/${P}.confd ${PN}
95 newinitd "${FILESDIR}"/${P}.initd ${PN}
96
97 dodoc README TODO
98 }
99
100 pkg_postinst() {
101 ewarn "minidlna no longer runs as root:root, per bug 394373."
102 ewarn "Please edit /etc/conf.d/${PN} to suit your needs."
103 }