Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gource: metadata.xml ChangeLog gource-0.24_p20100126.ebuild
Date: Sun, 31 Jan 2010 15:39:40
Message-Id: E1Nbbth-0005hr-PI@stork.gentoo.org
1 flameeyes 10/01/31 15:39:37
2
3 Added: metadata.xml ChangeLog gource-0.24_p20100126.ebuild
4 Log:
5 Initial import of the VCS visualisation tool Gource. It's a snapshot ebuild contributed by Enrico Tagliavini, to use the new autotools-based build system (written by me, merged upstream), to keep in line with QA policies. Also thanks to the indipendent writer Stanislav Cymbalov in bug #297074.
6 (Portage version: 2.2_rc62/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-util/gource/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gource/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gource/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>no-herd</herd>
20 <maintainer>
21 <email>flameeyes@g.o</email>
22 </maintainer>
23 <maintainer>
24 <email>enrico.tagliavini@×××××.com</email>
25 <name>Enrico Tagliavini</name>
26 <description>Proxied co-maintainer</description>
27 </maintainer>
28 </pkgmetadata>
29
30
31
32 1.1 dev-util/gource/ChangeLog
33
34 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gource/ChangeLog?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gource/ChangeLog?rev=1.1&content-type=text/plain
36
37 Index: ChangeLog
38 ===================================================================
39 # ChangeLog for dev-util/gource
40 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
41 # $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.1 2010/01/31 15:39:36 flameeyes Exp $
42
43 *gource-0.24_p20100126 (31 Jan 2010)
44
45 31 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
46 +gource-0.24_p20100126.ebuild, +metadata.xml:
47 Initial import of the VCS visualisation tool Gource. It's a snapshot
48 ebuild contributed by Enrico Tagliavini, to use the new autotools-based
49 build system (written by me, merged upstream), to keep in line with QA
50 policies. Also thanks to the indipendent writer Stanislav Cymbalov in bug
51 #297074.
52
53
54
55
56 1.1 dev-util/gource/gource-0.24_p20100126.ebuild
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gource/gource-0.24_p20100126.ebuild?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gource/gource-0.24_p20100126.ebuild?rev=1.1&content-type=text/plain
60
61 Index: gource-0.24_p20100126.ebuild
62 ===================================================================
63 # Copyright 1999-2010 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.24_p20100126.ebuild,v 1.1 2010/01/31 15:39:36 flameeyes Exp $
66
67 EAPI=2
68
69 inherit autotools
70
71 GITHUB_USER="acaudwell"
72 TREE_HASH="820a2a53df407a97ede32c6b814b869aea58def0"
73
74 DESCRIPTION="A software version control visualization tool"
75 HOMEPAGE="http://code.google.com/p/gource/"
76 SRC_URI="http://github.com/${GITHUB_USER}/${PN}/tarball/${TREE_HASH} -> ${PN}-git-${PV}.tgz"
77
78 LICENSE="GPL-3"
79 SLOT="0"
80 KEYWORDS="~amd64"
81 IUSE=""
82
83 RDEPEND="
84 >=media-libs/libsdl-1.2.10[opengl,X]
85 >=media-libs/sdl-image-1.2[jpeg,png]
86 dev-libs/libpcre:3
87 >=media-libs/ftgl-2.1.3_rc5
88 >=media-libs/libpng-1.2
89 >=media-libs/jpeg-6b-r9
90 media-libs/mesa
91 media-fonts/freefont-ttf
92 "
93 DEPEND="
94 ${RDEPEND}
95 dev-util/pkgconfig
96 media-libs/freetype:2
97 "
98
99 S="${WORKDIR}/${GITHUB_USER}-Gource-${TREE_HASH:0:7}"
100
101 src_prepare() {
102 eautoreconf
103 }
104
105 src_configure() {
106 econf --enable-ttf-font-dir=/usr/share/fonts/freefont-ttf/
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "Install failed"
111 dodoc README || die "dodoc failed"
112 }