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: ChangeLog gource-0.29.ebuild gource-0.26b.ebuild gource-0.27.ebuild
Date: Fri, 04 Feb 2011 15:42:01
Message-Id: 20110204154152.BC0A520054@flycatcher.gentoo.org
1 flameeyes 11/02/04 15:41:52
2
3 Modified: ChangeLog
4 Added: gource-0.29.ebuild
5 Removed: gource-0.26b.ebuild gource-0.27.ebuild
6 Log:
7 Version bump by Enrico; remove old versions.
8
9 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.10 dev-util/gource/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 6 Sep 2010 18:30:34 -0000 1.9
25 +++ ChangeLog 4 Feb 2011 15:41:52 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-util/gource
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.9 2010/09/06 18:30:34 flameeyes Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.10 2011/02/04 15:41:52 flameeyes Exp $
32 +
33 +*gource-0.29 (04 Feb 2011)
34 +
35 + 04 Feb 2011; Diego E. Pettenò <flameeyes@g.o> -gource-0.26b.ebuild,
36 + -gource-0.27.ebuild, +gource-0.29.ebuild:
37 + Version bump by Enrico; remove old versions.
38
39 *gource-0.28 (06 Sep 2010)
40
41
42
43
44 1.1 dev-util/gource/gource-0.29.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/gource-0.29.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/gource-0.29.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gource-0.29.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.29.ebuild,v 1.1 2011/02/04 15:41:52 flameeyes Exp $
54
55 EAPI=2
56
57 inherit versionator
58
59 MY_P=${P/_p/-}
60 MY_P=${MY_P/_/-}
61 MY_DATE=${PV/*_p}
62
63 DESCRIPTION="A software version control visualization tool"
64 HOMEPAGE="http://code.google.com/p/gource/"
65 SRC_URI="http://gource.googlecode.com/files/${MY_P}.tar.gz"
66
67 LICENSE="GPL-3"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE=""
71
72 RDEPEND="
73 >=media-libs/libsdl-1.2.10[opengl,X]
74 >=media-libs/sdl-image-1.2[jpeg,png]
75 dev-libs/libpcre:3
76 >=media-libs/ftgl-2.1.3_rc5
77 >=media-libs/libpng-1.2
78 >=media-libs/jpeg-6b-r9
79 media-libs/mesa
80 media-fonts/freefont-ttf
81 >=media-libs/glew-1.5
82 "
83 DEPEND="
84 ${RDEPEND}
85 dev-util/pkgconfig
86 media-libs/freetype:2
87 "
88
89 case ${PV} in
90 *_beta*)
91 my_v=$(get_version_component_range 1-3)
92 my_v=${my_v//_/-}
93 S="${WORKDIR}/${PN}-${my_v}" ;;
94 *)
95 S="${WORKDIR}/${PN}-$(get_version_component_range 1-2)" ;;
96 esac
97
98 src_configure() {
99 econf --enable-ttf-font-dir=/usr/share/fonts/freefont-ttf/
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "Install failed"
104 dodoc README ChangeLog THANKS || die "dodoc failed"
105 }