diff options
author | 2018-04-25 19:53:54 +0200 | |
---|---|---|
committer | 2018-04-25 20:29:26 +0200 | |
commit | 9086f24bc80430a3a4434bb80f7a91b00696cc1c (patch) | |
tree | 8f7adebb524510a4c7547ff33ac9df19a6a5d4b0 /games-arcade/xbubble/xbubble-0.5.8-r1.ebuild | |
parent | sys-kernel/gentoo-sources: amd64 stable wrt bug #653958 (diff) | |
download | gentoo-9086f24bc80430a3a4434bb80f7a91b00696cc1c.tar.gz gentoo-9086f24bc80430a3a4434bb80f7a91b00696cc1c.tar.bz2 gentoo-9086f24bc80430a3a4434bb80f7a91b00696cc1c.zip |
games-arcade/xbubble: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade/xbubble/xbubble-0.5.8-r1.ebuild')
-rw-r--r-- | games-arcade/xbubble/xbubble-0.5.8-r1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/games-arcade/xbubble/xbubble-0.5.8-r1.ebuild b/games-arcade/xbubble/xbubble-0.5.8-r1.ebuild new file mode 100644 index 000000000000..67c8f575299f --- /dev/null +++ b/games-arcade/xbubble/xbubble-0.5.8-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop + +DESCRIPTION="A Puzzle Bobble clone similar to Frozen-Bubble" +HOMEPAGE="http://www.nongnu.org/xbubble/" +SRC_URI="http://www.ibiblio.org/pub/mirrors/gnu/ftp/savannah/files/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~x86" +IUSE="nls" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXt + media-libs/libpng:0= + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) +" + +DOCS=( AUTHORS ChangeLog NEWS NetworkProtocol README TODO ) + +src_prepare() { + default + eapply \ + "${FILESDIR}"/${P}-xpaths.patch \ + "${FILESDIR}"/${P}-locale.patch \ + "${FILESDIR}"/${P}-libpng14.patch \ + "${FILESDIR}"/${P}-png15.patch + sed -i \ + -e '/^AM_CFLAGS/d' \ + src/Makefile.in || die + sed -i \ + -e '/^localedir/s:=.*:=/usr/share/locale:' \ + configure po/Makefile.in.in || die +} + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + default + newicon data/themes/fancy/Bubble_black_DEAD_01.png ${PN}.png + make_desktop_entry ${PN} XBubble +} |