diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:13 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:34:48 +0100 |
commit | 004e1e05f9af790b5c47bc1d0e6f1316e8820db5 (patch) | |
tree | 8254bf5264e5b03a2d09da1abe5e7815f04ea924 /games-board/awale | |
parent | games-board/atakks: Remove old (diff) | |
download | gentoo-004e1e05f9af790b5c47bc1d0e6f1316e8820db5.tar.gz gentoo-004e1e05f9af790b5c47bc1d0e6f1316e8820db5.tar.bz2 gentoo-004e1e05f9af790b5c47bc1d0e6f1316e8820db5.zip |
games-board/awale: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-board/awale')
-rw-r--r-- | games-board/awale/awale-1.5.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/games-board/awale/awale-1.5.ebuild b/games-board/awale/awale-1.5.ebuild deleted file mode 100644 index 3c34764cb370..000000000000 --- a/games-board/awale/awale-1.5.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# do not use autotools related stuff in stable ebuilds -# unless you like random breakage: 469796, 469798, 424041 - -EAPI=5 - -inherit autotools eutils gnome2-utils games - -DESCRIPTION="Free Awale - The game of all Africa" -HOMEPAGE="http://www.nongnu.org/awale/" -SRC_URI="mirror://nongnu/awale/${P}.tar.gz" -SRC_URI="${SRC_URI} https://dev.gentoo.org/~hasufell/distfiles/${P}-no-autoreconf2.patch.xz" # STABLE ARCH - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="tk" - -RDEPEND="tk? ( dev-lang/tcl:0= dev-lang/tk:0= )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-build.patch - - mv src/xawale.tcl src/xawale.tcl.in || die - mv configure.in configure.ac - rm aclocal.m4 - eautoreconf -} - -src_configure() { - egamesconf \ - --mandir=/usr/share/man \ - --with-iconsdir=/usr/share/icons/hicolor/48x48/apps \ - --with-desktopdir=/usr/share/applications \ - $(use_enable tk) -} - -src_install() { - default - prepgamesdirs - use tk && fperms +x "${GAMES_DATADIR}"/${PN}/xawale.tcl -} - -pkg_preinst() { - games_pkg_preinst - use tk && gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - use tk && gnome2_icon_cache_update -} - -pkg_postrm() { - use tk && gnome2_icon_cache_update -} |