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: metadata.xml ChangeLog nted-1.6.0.ebuild
Date: Tue, 30 Jun 2009 22:20:45
Message-Id: E1MLlgx-0007Lt-0a@stork.gentoo.org
1 hwoarang 09/06/30 22:20:43
2
3 Added: metadata.xml ChangeLog nted-1.6.0.ebuild
4 Log:
5 Initial commit of nted score editor. Fixes bug 244716
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-sound/nted/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sound</herd>
20 <maintainer>
21 <email>hwoarang@g.o</email>
22 <name>Markos Chandras</name>
23 </maintainer>
24 <maintainer>
25 <email>gentoo@××××××××××.de</email>
26 <name>Matthias Vill</name>
27 <description>Proxy maintainer</description>
28 </maintainer>
29 <longdescription lang="en">
30 </longdescription>
31 </pkgmetadata>
32
33
34
35
36 1.1 media-sound/nted/ChangeLog
37
38 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/ChangeLog?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/ChangeLog?rev=1.1&content-type=text/plain
40
41 Index: ChangeLog
42 ===================================================================
43 # ChangeLog for media-sound/nted
44 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
45 # $Header: /var/cvsroot/gentoo-x86/media-sound/nted/ChangeLog,v 1.1 2009/06/30 22:20:42 hwoarang Exp $
46
47 *nted-1.6.0 (30 Jun 2009)
48
49 30 Jun 2009; Markos Chandras <hwoarang@g.o> +nted-1.6.0.ebuild,
50 +metadata.xml:
51 Initial commit of nted score editor. Fixes bug 244716. adding Matthias
52 Vill
53 <gentoo@××××××××××.de> as proxy maintainer. Thanks to Dominik Kozaczko
54 <dominik@××××××××.info> for the initial ebuild.
55
56
57
58
59 1.1 media-sound/nted/nted-1.6.0.ebuild
60
61 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/nted-1.6.0.ebuild?rev=1.1&view=markup
62 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/nted/nted-1.6.0.ebuild?rev=1.1&content-type=text/plain
63
64 Index: nted-1.6.0.ebuild
65 ===================================================================
66 # Copyright 1999-2009 Gentoo Foundation
67 # Distributed under the terms of the GNU General Public License v2
68 # $Header: /var/cvsroot/gentoo-x86/media-sound/nted/nted-1.6.0.ebuild,v 1.1 2009/06/30 22:20:42 hwoarang Exp $
69
70 EAPI="2"
71
72 inherit eutils
73
74 DESCRIPTION="WYSIWYG score editor for GTK+2"
75 HOMEPAGE="http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml"
76 SRC_URI="http://vsr.informatik.tu-chemnitz.de/staff/jan/${PN}/${P}.tar.gz"
77
78 LICENSE="GPL-2"
79 SLOT="0"
80 KEYWORDS="~amd64 ~x86"
81 IUSE="doc nls debug"
82 RDEPEND="doc? ( gnome-extra/yelp app-text/xmlto )
83 x11-libs/cairo
84 x11-libs/gtk+:2
85 media-libs/alsa-lib"
86
87 DEPEND="${RDEPEND}
88 dev-util/pkgconfig"
89
90
91 src_configure() {
92 econf $(use_with doc) \
93 $(use_enable debug) \
94 $(use_enable nls) || die "econf failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "emake install failed"
99 dodoc AUTHORS ABOUT_* ChangeLog FAQ NEWS README || die "dodoc failed"
100 doman "man/${PN}.1" || die "doman failed"
101 }