diff options
author | 2014-10-28 05:56:44 +0000 | |
---|---|---|
committer | 2014-10-28 05:56:44 +0000 | |
commit | d7e886d5a5b6f17f1c0ece2075d78c6bd1440c9f (patch) | |
tree | 371f2c452a341fc761e7703ce162759586cffe23 /games-board/pioneers | |
parent | Added -source to JAVAC_ARGS to fix bug #526720 (diff) | |
download | gentoo-2-d7e886d5a5b6f17f1c0ece2075d78c6bd1440c9f.tar.gz gentoo-2-d7e886d5a5b6f17f1c0ece2075d78c6bd1440c9f.tar.bz2 gentoo-2-d7e886d5a5b6f17f1c0ece2075d78c6bd1440c9f.zip |
version bump
(Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board/pioneers')
-rw-r--r-- | games-board/pioneers/ChangeLog | 7 | ||||
-rw-r--r-- | games-board/pioneers/pioneers-15.3.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/games-board/pioneers/ChangeLog b/games-board/pioneers/ChangeLog index 0235fd1393cf..3722dfc90f3d 100644 --- a/games-board/pioneers/ChangeLog +++ b/games-board/pioneers/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-board/pioneers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pioneers/ChangeLog,v 1.42 2014/10/27 20:08:20 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pioneers/ChangeLog,v 1.43 2014/10/28 05:56:44 mr_bones_ Exp $ + +*pioneers-15.3 (28 Oct 2014) + + 28 Oct 2014; Michael Sterrett <mr_bones_@gentoo.org> +pioneers-15.3.ebuild: + version bump 27 Oct 2014; Michael Sterrett <mr_bones_@gentoo.org> -pioneers-15.1.ebuild: old diff --git a/games-board/pioneers/pioneers-15.3.ebuild b/games-board/pioneers/pioneers-15.3.ebuild new file mode 100644 index 000000000000..fc78d394cac1 --- /dev/null +++ b/games-board/pioneers/pioneers-15.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/pioneers/pioneers-15.3.ebuild,v 1.1 2014/10/28 05:56:44 mr_bones_ Exp $ + +EAPI=5 +inherit autotools eutils gnome-games + +DESCRIPTION="A clone of the popular board game The Settlers of Catan" +HOMEPAGE="http://pio.sourceforge.net/" +SRC_URI="mirror://sourceforge/pio/${P}.tar.gz" + +LICENSE="GPL-2 CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dedicated help nls" + +# dev-util/gob only for autoreconf +RDEPEND=">=dev-libs/glib-2.26:2 + !dedicated? ( + >=x11-libs/gtk+-3.4:3 + >=x11-libs/libnotify-0.7.4 + help? ( + >=app-text/scrollkeeper-0.3.8 + >=gnome-base/libgnome-2.10 + ) + ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + dev-util/gob:2 + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +src_prepare() { + gnome2_src_prepare +} + +src_configure() { + gnome-games_src_configure \ + $(use_enable nls) \ + $(use_enable help) \ + --includedir=/usr/include \ + $(use_with !dedicated gtk) +} + +src_install() { + DOCS='AUTHORS ChangeLog README TODO NEWS' \ + gnome2_src_install scrollkeeper_localstate_dir="${ED%/}"/var/lib/scrollkeeper/ + prepgamesdirs +} |