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