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: ChangeLog nted-1.10.7-r1.ebuild nted-1.10.7.ebuild
Date: Thu, 03 Jun 2010 11:59:34
Message-Id: 20100603115929.823512CF40@corvid.gentoo.org
1 hwoarang 10/06/03 11:59:29
2
3 Modified: ChangeLog
4 Added: nted-1.10.7-r1.ebuild
5 Removed: nted-1.10.7.ebuild
6 Log:
7 Fix LICENSE installation and usage thanks to Samuli
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 media-sound/nted/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/nted/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/nted/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/nted/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 3 Jun 2010 11:32:54 -0000 1.11
24 +++ ChangeLog 3 Jun 2010 11:59:29 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/nted
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v 1.11 2010/06/03 11:32:54 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v 1.12 2010/06/03 11:59:29 hwoarang Exp $
30 +
31 +*nted-1.10.7-r1 (03 Jun 2010)
32 +
33 + 03 Jun 2010; Markos Chandras <hwoarang@g.o> -nted-1.10.7.ebuild,
34 + +nted-1.10.7-r1.ebuild:
35 + Fix LICENSE installation and usage thanks to Samuli
36
37 *nted-1.10.7 (03 Jun 2010)
38
39
40
41
42 1.1 media-sound/nted/nted-1.10.7-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/nted/nted-1.10.7-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/nted/nted-1.10.7-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: nted-1.10.7-r1.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.10.7-r1.ebuild,v 1.1 2010/06/03 11:59:29 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 FDL-1.2 NTED_FONT )"
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_THE_EXAMPLES.TXT FAQ README || die "dodoc failed"
84 doman "man/${PN}.1" || die "doman failed"
85 }