diff options
-rw-r--r-- | games-board/pio/ChangeLog | 7 | ||||
-rw-r--r-- | games-board/pio/Manifest | 4 | ||||
-rw-r--r-- | games-board/pio/files/digest-pio-0.9.23 | 1 | ||||
-rw-r--r-- | games-board/pio/pio-0.9.23.ebuild | 51 |
4 files changed, 61 insertions, 2 deletions
diff --git a/games-board/pio/ChangeLog b/games-board/pio/ChangeLog index 2aef49c219d2..b05ac9cf635b 100644 --- a/games-board/pio/ChangeLog +++ b/games-board/pio/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-board/pio # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pio/ChangeLog,v 1.1 2005/07/21 03:00:04 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pio/ChangeLog,v 1.2 2005/08/18 17:16:43 rizzo Exp $ + +*pio-0.9.23 (18 Aug 2005) + + 18 Aug 2005; Don Seiler <rizzo@gentoo.org> +pio-0.9.23.ebuild: + Version bump *pio-0.9.19 (21 Jul 2005) diff --git a/games-board/pio/Manifest b/games-board/pio/Manifest index a61a6ce4b9ce..146bf776c8fa 100644 --- a/games-board/pio/Manifest +++ b/games-board/pio/Manifest @@ -1,4 +1,6 @@ MD5 5312c9ec860c6420ed9f953b46a2ec52 pio-0.9.19.ebuild 1106 MD5 7035b4db1ed5ed0e55ee3dd6524e5b2b metadata.xml 321 -MD5 9ad1cb611c70fa8f9eaefa6c5d606b2b ChangeLog 381 +MD5 b6a7181fcc377ff1ca23f6fd71911d71 pio-0.9.23.ebuild 1123 +MD5 3bbb019e67dc01bfdaa8d34117db5959 ChangeLog 489 MD5 a270a5b020f0b2c049fe47b0396bafd9 files/digest-pio-0.9.19 68 +MD5 bd0fefda62535dc61a6c2791b5b194f8 files/digest-pio-0.9.23 68 diff --git a/games-board/pio/files/digest-pio-0.9.23 b/games-board/pio/files/digest-pio-0.9.23 new file mode 100644 index 000000000000..eafec9578bc5 --- /dev/null +++ b/games-board/pio/files/digest-pio-0.9.23 @@ -0,0 +1 @@ +MD5 8d759c962cce7ccc998e9f732ed32725 pioneers-0.9.23.tar.gz 2087235 diff --git a/games-board/pio/pio-0.9.23.ebuild b/games-board/pio/pio-0.9.23.ebuild new file mode 100644 index 000000000000..3bfe7c194e9e --- /dev/null +++ b/games-board/pio/pio-0.9.23.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/pio/pio-0.9.23.ebuild,v 1.1 2005/08/18 17:16:43 rizzo Exp $ + +inherit eutils gnome2 debug + +MY_P="pioneers-${PV}" +DESCRIPTION="A clone of the popular board game The Settlers of Catan" +HOMEPAGE="http://pio.sourceforge.net/" +SRC_URI="mirror://sourceforge/pio/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="nls debug X" + +RDEPEND=">=dev-libs/glib-2.4 + >=gnome-base/libgnome-2.10 + X? ( >=x11-libs/gtk+-2.4 + >=app-text/scrollkeeper-0.3 )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_compile() { + export G2CONF="${G2CONF} `use_enable nls`" + export G2CONF="${G2CONF} `use_enable debug`" + + if use X ; then + gnome2_src_compile + else + einfo + einfo "Only building console server" + einfo + + econf ${G2CONF} || die "./configure failure" + emake || die "emake failed" + fi +} + +src_install() { + DOCS="AUTHORS ChangeLog README TODO NEWS" + if use X ; then + gnome2_src_install + else + make DESTDIR=${D} install + dodoc ${DOCS} + fi +} |