commit:     f8ea46cb18cfb355723793574d0f27f3b3a12347
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  7 20:41:01 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Wed Sep  7 22:16:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8ea46cb

games-board/gnubg: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: portage-2.3.0

 games-board/gnubg/gnubg-1.05.000-r1.ebuild | 108 +++++++++++++++++++++++++++++
 1 file changed, 108 insertions(+)

diff --git a/games-board/gnubg/gnubg-1.05.000-r1.ebuild 
b/games-board/gnubg/gnubg-1.05.000-r1.ebuild
new file mode 100644
index 00000000..dff9238
--- /dev/null
+++ b/games-board/gnubg/gnubg-1.05.000-r1.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit eutils python-single-r1 gnome2-utils
+
+DESCRIPTION="GNU BackGammon"
+HOMEPAGE="http://www.gnubg.org/";
+SRC_URI="http://gnubg.org/media/sources/${PN}-release-${PV}-sources.tar.gz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="cpu_flags_x86_avx gtk opengl python sqlite cpu_flags_x86_sse 
cpu_flags_x86_sse2 threads"
+
+RDEPEND="
+       dev-db/sqlite:3
+       dev-libs/glib:2
+       dev-libs/gmp:0
+       dev-libs/libxml2
+       media-fonts/dejavu
+       media-libs/freetype:2
+       media-libs/libcanberra
+       media-libs/libpng:0
+       sys-libs/readline:0
+       x11-libs/cairo
+       x11-libs/pango
+       gtk? ( x11-libs/gtk+:2 )
+       opengl? (
+               x11-libs/gtk+:2
+               x11-libs/gtkglext
+               virtual/glu
+       )
+       python? ( ${PYTHON_DEPS} )
+       virtual/libintl"
+DEPEND="${RDEPEND}
+       sys-devel/gettext
+       virtual/pkgconfig"
+
+pkg_setup() {
+       python-single-r1_pkg_setup
+}
+
+src_prepare() {
+       default
+
+       # use ${T} instead of /tmp for constructing credits (bug #298275)
+       sed -i -e 's:/tmp:${T}:' credits.sh || die
+       sed -i -e 's/fonts //' Makefile.in || die # handle font install ourself 
to fix bug #335774
+       sed -i \
+               -e '/^localedir / s#=.*$#= @localedir@#' \
+               -e '/^gnulocaledir / s#=.*$#= @localedir@#' \
+               po/Makefile.in.in || die
+       sed -i \
+               -e '/^gnubgiconsdir / s#=.*#= /usr/share#' \
+               -e '/^gnubgpixmapsdir / s#=.*#= /usr/share/pixmaps#' \
+               pixmaps/Makefile.in || die
+       sed -i \
+               -e '1i#include <config.h>' \
+               copying.c || die #551896
+}
+
+src_configure() {
+       local simd=no
+       local gtk_arg=--without-gtk
+
+       if use gtk || use opengl ; then
+               gtk_arg=--with-gtk
+       fi
+       use cpu_flags_x86_sse  && simd=sse
+       use cpu_flags_x86_sse2 && simd=sse2
+       use cpu_flags_x86_avx  && simd=avx
+       econf \
+               --localedir=/usr/share/locale \
+               --docdir=/usr/share/doc/${PF}/html \
+               --disable-cputest \
+               --enable-simd=${simd} \
+               ${gtk_arg} \
+               $(use_enable threads) \
+               $(use_with python) \
+               $(use_with sqlite sqlite) \
+               $(use_with opengl board3d)
+}
+
+src_install() {
+       default
+       insinto /usr/share/${PN}
+       doins ${PN}.weights *bd
+       dodir /usr/share/${PN}/fonts
+       dosym /usr/share/fonts/dejavu/DejaVuSans.ttf 
/usr/share/${PN}/fonts/Vera.ttf
+       dosym /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf 
/usr/share/${PN}/fonts/VeraBd.ttf
+       dosym /usr/share/fonts/dejavu/DejaVuSerif-Bold.ttf 
/usr/share/${PN}/fonts/VeraSeBd.ttf
+       make_desktop_entry "gnubg -w" "GNU Backgammon"
+}
+
+pkg_preinst() {
+       gnome2_icon_savelist
+}
+
+pkg_postinst() {
+       gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+       gnome2_icon_cache_update
+}

Reply via email to