diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-07-17 14:49:21 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-07-17 14:49:21 +0000 |
commit | 175e12fa244953354f2c78b9b418cf81831979d7 (patch) | |
tree | f715652d0cf9b616983e0a17147c2dd78b3928d5 /dev-util/gource/gource-0.35.ebuild | |
parent | x86 stable, bug #374193 (diff) | |
download | gentoo-2-175e12fa244953354f2c78b9b418cf81831979d7.tar.gz gentoo-2-175e12fa244953354f2c78b9b418cf81831979d7.tar.bz2 gentoo-2-175e12fa244953354f2c78b9b418cf81831979d7.zip |
Version bump by Enrico.
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/gource/gource-0.35.ebuild')
-rw-r--r-- | dev-util/gource/gource-0.35.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/dev-util/gource/gource-0.35.ebuild b/dev-util/gource/gource-0.35.ebuild new file mode 100644 index 000000000000..4a4e49e28023 --- /dev/null +++ b/dev-util/gource/gource-0.35.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.35.ebuild,v 1.1 2011/07/17 14:49:21 flameeyes Exp $ + +EAPI=2 + +inherit autotools versionator + +MY_P=${P/_p/-} +MY_P=${MY_P/_/-} +MY_DATE=${PV/*_p} + +DESCRIPTION="A software version control visualization tool" +HOMEPAGE="http://code.google.com/p/gource/" +SRC_URI="http://gource.googlecode.com/files/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=media-libs/libsdl-1.2.10[opengl,X] + >=media-libs/sdl-image-1.2[jpeg,png] + dev-libs/libpcre:3 + >=media-libs/libpng-1.2 + virtual/jpeg + media-libs/mesa + media-fonts/freefont-ttf + >=media-libs/glew-1.5 + dev-libs/tinyxml[-stl] + " +DEPEND=" + ${RDEPEND} + dev-util/pkgconfig + media-libs/freetype:2 + " + +case ${PV} in + *_beta*) + my_v=$(get_version_component_range 1-3) + my_v=${my_v//_/-} + S="${WORKDIR}/${PN}-${my_v}" ;; + *) + S="${WORKDIR}/${PN}-$(get_version_component_range 1-2)" ;; +esac + +src_prepare() { + eautoreconf +} + +src_configure() { + econf --enable-ttf-font-dir=/usr/share/fonts/freefont-ttf/ \ + --with-tinyxml +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc README ChangeLog THANKS || die "dodoc failed" +} |