diff options
author | 2009-01-31 05:38:50 +0000 | |
---|---|---|
committer | 2009-01-31 05:38:50 +0000 | |
commit | 21f2f33ff1cb55331f9fb1b48f154f822ec624a3 (patch) | |
tree | 3a6b7e4ca72a573db7c2b1f625400722a7fe17d6 /games-sports | |
parent | initial commit - ebuild submitted by Paul Bredbury via bug #117096 (diff) | |
download | gentoo-2-21f2f33ff1cb55331f9fb1b48f154f822ec624a3.tar.gz gentoo-2-21f2f33ff1cb55331f9fb1b48f154f822ec624a3.tar.bz2 gentoo-2-21f2f33ff1cb55331f9fb1b48f154f822ec624a3.zip |
version bump
(Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
Diffstat (limited to 'games-sports')
-rw-r--r-- | games-sports/bygfoot/ChangeLog | 10 | ||||
-rw-r--r-- | games-sports/bygfoot/bygfoot-2.3.1.ebuild | 48 |
2 files changed, 56 insertions, 2 deletions
diff --git a/games-sports/bygfoot/ChangeLog b/games-sports/bygfoot/ChangeLog index 65a59dd56039..4a220e663201 100644 --- a/games-sports/bygfoot/ChangeLog +++ b/games-sports/bygfoot/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-sports/bygfoot -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/bygfoot/ChangeLog,v 1.21 2008/11/26 04:29:51 mr_bones_ Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-sports/bygfoot/ChangeLog,v 1.22 2009/01/31 05:38:50 mr_bones_ Exp $ + +*bygfoot-2.3.1 (31 Jan 2009) + + 31 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org> + +bygfoot-2.3.1.ebuild: + version bump *bygfoot-2.3.0 (26 Nov 2008) diff --git a/games-sports/bygfoot/bygfoot-2.3.1.ebuild b/games-sports/bygfoot/bygfoot-2.3.1.ebuild new file mode 100644 index 000000000000..37528feb5659 --- /dev/null +++ b/games-sports/bygfoot/bygfoot-2.3.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-sports/bygfoot/bygfoot-2.3.1.ebuild,v 1.1 2009/01/31 05:38:50 mr_bones_ Exp $ + +EAPI=1 +inherit eutils games + +DESCRIPTION="GTK+2 Soccer Management Game" +HOMEPAGE="http://bygfoot.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2 + media-libs/freetype:2 + virtual/libintl" +DEPEND="${RDEPEND} + dev-util/pkgconfig + sys-devel/gettext" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e 's:$(gnulocaledir):/usr/share/locale:' \ + -e '/PACKAGE_LOCALE_DIR/s:\$(prefix)/\$(DATADIRNAME):/usr/share:' \ + po/Makefile.in.in src/Makefile.in \ + || die "sed failed" +} + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + --disable-gstreamer \ + || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README TODO UPDATE + newicon support_files/pixmaps/bygfoot_icon.png ${PN}.png + make_desktop_entry ${PN} Bygfoot + prepgamesdirs +} |