diff options
author | 2010-03-07 23:18:23 +0000 | |
---|---|---|
committer | 2010-03-07 23:18:23 +0000 | |
commit | bd0b18f318ba94f2d3f2394db00a87ab8b096997 (patch) | |
tree | 4f9821cc2075cd90e4f83034dbfc3b241433344f /dev-util | |
parent | make depends unconditional (diff) | |
download | gentoo-2-bd0b18f318ba94f2d3f2394db00a87ab8b096997.tar.gz gentoo-2-bd0b18f318ba94f2d3f2394db00a87ab8b096997.tar.bz2 gentoo-2-bd0b18f318ba94f2d3f2394db00a87ab8b096997.zip |
Version bump.
(Portage version: 2.2_rc65/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/gource/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/gource/gource-0.25.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-util/gource/ChangeLog b/dev-util/gource/ChangeLog index dff6b1097c36..450140e59f48 100644 --- a/dev-util/gource/ChangeLog +++ b/dev-util/gource/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/gource # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.4 2010/02/27 10:28:01 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/ChangeLog,v 1.5 2010/03/07 23:18:23 flameeyes Exp $ + +*gource-0.25 (07 Mar 2010) + + 07 Mar 2010; Diego E. Pettenò <flameeyes@gentoo.org> +gource-0.25.ebuild: + Version bump. 27 Feb 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> gource-0.24.ebuild: ~x86 keyword wrt bug #306563 diff --git a/dev-util/gource/gource-0.25.ebuild b/dev-util/gource/gource-0.25.ebuild new file mode 100644 index 000000000000..78132e0b8b56 --- /dev/null +++ b/dev-util/gource/gource-0.25.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gource/gource-0.25.ebuild,v 1.1 2010/03/07 23:18:23 flameeyes Exp $ + +EAPI=2 + +inherit versionator + +MY_P=${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/ftgl-2.1.3_rc5 + >=media-libs/libpng-1.2 + >=media-libs/jpeg-6b-r9 + media-libs/mesa + media-fonts/freefont-ttf + " +DEPEND=" + ${RDEPEND} + dev-util/pkgconfig + media-libs/freetype:2 + " +S="${WORKDIR}/${PN}-$(get_version_component_range 1-2)" + +src_configure() { + econf --enable-ttf-font-dir=/usr/share/fonts/freefont-ttf/ +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc README ChangeLog THANKS || die "dodoc failed" +} |