Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/nted: nted-1.9.16.ebuild ChangeLog
Date: Sun, 07 Feb 2010 10:24:22
Message-Id: E1Ne4JN-0001bS-CW@stork.gentoo.org
1 hwoarang 10/02/07 10:24:17
2
3 Modified: ChangeLog
4 Added: nted-1.9.16.ebuild
5 Log:
6 Version bump. Fixes bug #301543 and bug #295760
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 media-sound/nted/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 20 Dec 2009 19:11:42 -0000 1.9
23 +++ ChangeLog 7 Feb 2010 10:24:16 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/nted
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v 1.9 2009/12/20 19:11:42 hwoarang Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v 1.10 2010/02/07 10:24:16 hwoarang Exp $
30 +
31 +*nted-1.9.16 (07 Feb 2010)
32 +
33 + 07 Feb 2010; Markos Chandras <hwoarang@g.o> +nted-1.9.16.ebuild:
34 + Version bump ( bug #301543 ). Fix documentation installation ( bug #295760
35 + ).
36
37 *nted-1.9.13 (20 Dec 2009)
38
39
40
41
42 1.1 media-sound/nted/nted-1.9.16.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/nted-1.9.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/nted-1.9.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nted-1.9.16.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/nted/nted-1.9.16.ebuild,v 1.1 2010/02/07 10:24:16 hwoarang Exp $
52
53 EAPI="2"
54
55 inherit eutils
56
57 DESCRIPTION="WYSIWYG score editor for GTK+2"
58 HOMEPAGE="http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml"
59 SRC_URI="http://vsr.informatik.tu-chemnitz.de/staff/jan/${PN}/sources/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc nls debug"
65 RDEPEND="doc? ( gnome-extra/yelp app-text/xmlto )
66 x11-libs/cairo
67 x11-libs/gtk+:2
68 media-libs/alsa-lib"
69
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 src_configure() {
74 econf $(use_with doc) \
75 $(use_enable debug) \
76 $(use_enable nls) \
77 --docdir=/usr/share/doc/${PF}
78
79 }
80
81 src_install() {
82 emake DESTDIR="${D}" install || die "emake install failed"
83 dodoc AUTHORS ABOUT_* ChangeLog FAQ NEWS README || die "dodoc failed"
84 doman "man/${PN}.1" || die "doman failed"
85 }