Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mpdas: mpdas-0.3.0-r1.ebuild ChangeLog
Date: Sat, 22 Mar 2014 16:59:11
Message-Id: 20140322165907.505CA2004F@flycatcher.gentoo.org
1 angelos 14/03/22 16:59:07
2
3 Modified: ChangeLog
4 Added: mpdas-0.3.0-r1.ebuild
5 Log:
6 Add init script (bug #493772), bump to EAPI5
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 84F20B43)
9
10 Revision Changes Path
11 1.14 media-sound/mpdas/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpdas/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpdas/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpdas/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/mpdas/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 5 May 2012 08:39:20 -0000 1.13
24 +++ ChangeLog 22 Mar 2014 16:59:07 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/mpdas
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdas/ChangeLog,v 1.13 2012/05/05 08:39:20 mgorny Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpdas/ChangeLog,v 1.14 2014/03/22 16:59:07 angelos Exp $
31 +
32 +*mpdas-0.3.0-r1 (22 Mar 2014)
33 +
34 + 22 Mar 2014; Christoph Mende <angelos@g.o> +files/mpdas.init,
35 + +mpdas-0.3.0-r1.ebuild:
36 + Add init script (bug #493772), bump to EAPI5
37
38 05 May 2012; Michał Górny <mgorny@g.o> mpdas-0.3.0.ebuild:
39 dev-util/pkgconfig -> virtual/pkgconfig
40 @@ -59,4 +65,3 @@
41 24 Nov 2008; Ben de Groot <yngwin@g.o> +metadata.xml,
42 +mpdas-0.2.2.ebuild:
43 Initial commit. Ebuild contributed by Sebastian Mair in bug 247216.
44 -
45
46
47
48 1.1 media-sound/mpdas/mpdas-0.3.0-r1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpdas/mpdas-0.3.0-r1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpdas/mpdas-0.3.0-r1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: mpdas-0.3.0-r1.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/media-sound/mpdas/mpdas-0.3.0-r1.ebuild,v 1.1 2014/03/22 16:59:07 angelos Exp $
58
59 EAPI=5
60
61 inherit toolchain-funcs
62
63 DESCRIPTION="An AudioScrobbler client for MPD written in C++"
64 HOMEPAGE="http://50hz.ws/mpdas/"
65 SRC_URI="http://50hz.ws/${PN}/${P}.tar.bz2"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 RDEPEND="media-libs/libmpd
73 net-misc/curl"
74 DEPEND="${RDEPEND}
75 virtual/pkgconfig"
76
77 src_compile() {
78 tc-export CXX
79 emake CONFIG="/etc"
80 }
81
82 src_install() {
83 dobin ${PN}
84 doman ${PN}.1
85 newinitd "${FILESDIR}/${PN}.init" ${PN}
86 dodoc ChangeLog mpdasrc.example README
87 }
88
89 pkg_postinst() {
90 elog "For further configuration help consult the README in"
91 elog "${EPREFIX}/usr/share/doc/${PF}"
92 }