Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/ices: ChangeLog ices-2.0.2.ebuild
Date: Fri, 02 Jan 2015 10:23:30
Message-Id: 20150102102306.F2DF6EB4D@oystercatcher.gentoo.org
1 polynomial-c 15/01/02 10:23:06
2
3 Modified: ChangeLog
4 Added: ices-2.0.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
9
10 Revision Changes Path
11 1.30 net-misc/ices/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ices/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ices/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ices/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/ices/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 10 Aug 2014 20:44:30 -0000 1.29
24 +++ ChangeLog 2 Jan 2015 10:23:06 -0000 1.30
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/ices
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ices/ChangeLog,v 1.29 2014/08/10 20:44:30 slyfox Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ices/ChangeLog,v 1.30 2015/01/02 10:23:06 polynomial-c Exp $
31 +
32 +*ices-2.0.2 (02 Jan 2015)
33 +
34 + 02 Jan 2015; Lars Wendler <polynomial-c@g.o> +ices-2.0.2.ebuild,
35 + +files/ices.initd-r1:
36 + Version bump.
37
38 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> ices-2.0.1-r1.ebuild:
39 QA: drop trailing '.' from DESCRIPTION
40
41
42
43 1.1 net-misc/ices/ices-2.0.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ices/ices-2.0.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ices/ices-2.0.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ices-2.0.2.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/ices/ices-2.0.2.ebuild,v 1.1 2015/01/02 10:23:06 polynomial-c Exp $
53
54 EAPI=5
55
56 inherit eutils user
57
58 DESCRIPTION="Icecast OGG streaming client, supports on the fly re-encoding"
59 HOMEPAGE="http://www.icecast.org/ices.php"
60 SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ppc64 ~sparc ~x86"
65 IUSE=""
66
67 RDEPEND="dev-libs/libxml2
68 >=media-libs/libshout-2
69 >=media-libs/libvorbis-1"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig"
72
73 pkg_setup() {
74 enewgroup ices
75 enewuser ices -1 -1 -1 ices
76 }
77
78 src_configure() {
79 econf --sysconfdir=/etc/ices2
80 }
81
82 src_install() {
83 default
84 insinto /etc/ices2
85 doins conf/*.xml
86 dohtml doc/*.{html,css}
87 newinitd "${FILESDIR}"/ices.initd-r1 ices
88 keepdir /var/log/ices
89 fperms 660 /var/log/ices
90 fowners ices:ices /var/log/ices
91 rm -rf "${D}"/usr/share/ices
92 }