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: gource-0.38-r1.ebuild ChangeLog gource-0.38.ebuild
Date: Wed, 30 Jan 2013 16:19:18
Message-Id: 20130130161914.B64942171D@flycatcher.gentoo.org
1 flameeyes 13/01/30 16:19:14
2
3 Modified: ChangeLog
4 Added: gource-0.38-r1.ebuild
5 Removed: gource-0.38.ebuild
6 Log:
7 Fix bug #454656 caused by a pkgmove that wasn't thought out.
8
9 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
10
11 Revision Changes Path
12 1.24 dev-util/gource/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 22 Nov 2012 04:13:39 -0000 1.23
25 +++ ChangeLog 30 Jan 2013 16:19:14 -0000 1.24
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-util/gource
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.23 2012/11/22 04:13:39 flameeyes Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.24 2013/01/30 16:19:14 flameeyes Exp $
32 +
33 +*gource-0.38-r1 (30 Jan 2013)
34 +
35 + 30 Jan 2013; Diego E. Pettenò <flameeyes@g.o> +gource-0.38-r1.ebuild,
36 + -gource-0.38.ebuild:
37 + Fix bug #454656 caused by a pkgmove that wasn't thought out.
38
39 22 Nov 2012; Diego E. Pettenò <flameeyes@g.o> gource-0.38.ebuild:
40 Bump to latest EAPI; use the default src_install; depend on threads-safe boost
41
42
43
44 1.1 dev-util/gource/gource-0.38-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/gource-0.38-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/gource-0.38-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gource-0.38-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 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.38-r1.ebuild,v 1.1 2013/01/30 16:19:14 flameeyes Exp $
54
55 EAPI=5
56
57 inherit eutils autotools flag-o-matic 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[video,opengl,X]
74 >=media-libs/sdl-image-1.2[jpeg,png]
75 dev-libs/libpcre:3
76 >=media-libs/libpng-1.2
77 virtual/jpeg
78 media-libs/mesa
79 media-fonts/freefont
80 >=media-libs/glew-1.5
81 dev-libs/tinyxml
82 >=dev-libs/boost-1.46[threads(+)]
83 "
84 DEPEND="
85 ${RDEPEND}
86 virtual/pkgconfig
87 media-libs/freetype:2
88 >=media-libs/glm-0.9.3
89 "
90
91 case ${PV} in
92 *_beta*)
93 my_v=$(get_version_component_range 1-3)
94 my_v=${my_v//_/-}
95 S="${WORKDIR}/${PN}-${my_v}" ;;
96 *)
97 S="${WORKDIR}/${PN}-$(get_version_component_range 1-2)" ;;
98 esac
99
100 src_prepare() {
101 epatch "${FILESDIR}/${P}+boost-1.50.patch"
102 eautoreconf
103 }
104
105 src_configure() {
106 # fix bug #386525
107 # this enable gource to be compiled against dev-libs/tinyxml[stl]
108 if has_version dev-libs/tinyxml[stl]; then
109 append-cppflags -DTIXML_USE_STL;
110 fi
111 econf --enable-ttf-font-dir=/usr/share/fonts/freefont/ \
112 --with-tinyxml
113 }
114
115 DOCS=( README ChangeLog THANKS )