Gentoo Archives: gentoo-commits

From: "Yixun Lan (dlan)" <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gource: ChangeLog gource-0.43.ebuild
Date: Wed, 26 Nov 2014 02:14:57
Message-Id: 20141126021454.2823BAEC0@oystercatcher.gentoo.org
1 dlan 14/11/26 02:14:54
2
3 Modified: ChangeLog
4 Added: gource-0.43.ebuild
5 Log:
6 version bump, bug 517724, update libsdl2 as new dep
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
9
10 Revision Changes Path
11 1.30 dev-util/gource/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 18 Sep 2013 08:28:37 -0000 1.29
24 +++ ChangeLog 26 Nov 2014 02:14:54 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/gource
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.29 2013/09/18 08:28:37 flameeyes Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.30 2014/11/26 02:14:54 dlan Exp $
31 +
32 +*gource-0.43 (26 Nov 2014)
33 +
34 + 26 Nov 2014; Yixun Lan <dlan@g.o> +gource-0.43.ebuild:
35 + version bump, bug 517724, update libsdl2 as new dep
36
37 18 Sep 2013; Diego E. Pettenò <flameeyes@g.o> gource-0.40.ebuild:
38 Fix bug #479896. Patch by Enrico Tagliavini.
39
40
41
42 1.1 dev-util/gource/gource-0.43.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/gource-0.43.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gource/gource-0.43.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gource-0.43.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.43.ebuild,v 1.1 2014/11/26 02:14:54 dlan Exp $
52
53 EAPI=5
54
55 inherit eutils flag-o-matic versionator
56
57 MY_P=${P/_p/-}
58 MY_P=${MY_P/_/-}
59 MY_DATE=${PV/*_p}
60
61 DESCRIPTION="A software version control visualization tool"
62 HOMEPAGE="http://code.google.com/p/gource/"
63 SRC_URI="https://github.com/acaudwell/Gource/releases/download/${P}/${P}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="
71 >=dev-libs/boost-1.46:=[threads(+)]
72 >=media-libs/glew-1.5
73 >=media-libs/libpng-1.2
74 media-libs/libsdl2[video,opengl,X]
75 media-libs/sdl2-image[jpeg,png]
76 dev-libs/libpcre:3
77 dev-libs/tinyxml
78 media-fonts/freefont
79 media-libs/freetype:2
80 media-libs/mesa
81 virtual/glu
82 virtual/jpeg
83 "
84 DEPEND="
85 ${RDEPEND}
86 virtual/pkgconfig
87 >=media-libs/glm-0.9.3
88 "
89
90 case ${PV} in
91 *_beta*)
92 my_v=$(get_version_component_range 1-3)
93 my_v=${my_v//_/-}
94 S="${WORKDIR}/${PN}-${my_v}" ;;
95 *)
96 S="${WORKDIR}/${PN}-$(get_version_component_range 1-2)" ;;
97 esac
98
99 src_configure() {
100 # fix bug #386525
101 # this enable gource to be compiled against dev-libs/tinyxml[stl]
102 if has_version dev-libs/tinyxml[stl]; then
103 append-cppflags -DTIXML_USE_STL;
104 fi
105 econf \
106 --enable-ttf-font-dir=/usr/share/fonts/freefont/ \
107 --with-tinyxml
108 }
109
110 DOCS=( README ChangeLog THANKS )