diff options
author | Michael Palimaka <kensington@gentoo.org> | 2019-11-25 21:33:10 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2019-11-25 21:33:21 +1100 |
commit | f0f8eede7e255526ba2bffbe8bb6a3146571d1a7 (patch) | |
tree | 055ab7c82351d0f74fcb439314ea56c4be1f1f7b /dev-util/gource/gource-0.51.ebuild | |
parent | app-text/ansifilter: version bump 2.15 (diff) | |
download | gentoo-f0f8eede7e255526ba2bffbe8bb6a3146571d1a7.tar.gz gentoo-f0f8eede7e255526ba2bffbe8bb6a3146571d1a7.tar.bz2 gentoo-f0f8eede7e255526ba2bffbe8bb6a3146571d1a7.zip |
dev-util/gource: version bump 0.51
Package-Manager: Portage-2.3.76, Repoman-2.3.18
Signed-off-by: Michael Palimaka <kensington@gentoo.org>
Diffstat (limited to 'dev-util/gource/gource-0.51.ebuild')
-rw-r--r-- | dev-util/gource/gource-0.51.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-util/gource/gource-0.51.ebuild b/dev-util/gource/gource-0.51.ebuild new file mode 100644 index 000000000000..a1e9aa52d6f9 --- /dev/null +++ b/dev-util/gource/gource-0.51.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic + +DESCRIPTION="A software version control visualization tool" +HOMEPAGE="https://gource.io/" +SRC_URI="https://github.com/acaudwell/Gource/releases/download/${P}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=" + >=dev-libs/boost-1.46:=[threads(+)] + >=media-libs/glew-1.5:0= + >=media-libs/libpng-1.2:0= + media-libs/libsdl2[video,opengl,X] + media-libs/sdl2-image[jpeg,png] + dev-libs/libpcre:3 + dev-libs/tinyxml + media-libs/freetype:2 + media-libs/mesa[X(+)] + virtual/glu:0 +" +RDEPEND="${COMMON_DEPEND} + media-fonts/freefont +" +DEPEND="${COMMON_DEPEND} + >=media-libs/glm-0.9.3 +" +BDEPEND="virtual/pkgconfig" + +DOCS=( README ChangeLog THANKS ) + +src_configure() { + # fix bug #386525 + # this enables gource to be compiled against dev-libs/tinyxml[stl] + if has_version dev-libs/tinyxml[stl]; then + append-cppflags -DTIXML_USE_STL; + fi + + econf \ + --enable-ttf-font-dir=/usr/share/fonts/freefont/ \ + --with-tinyxml +} |