diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-22 11:21:14 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-22 11:21:14 +0200 |
commit | 3422dd53a76aa50b80d5f3569968e583603e52ab (patch) | |
tree | 3cec3150e40c75322f8c72e540ca300413dc2f0f /games-arcade/lbreakout2 | |
parent | games-arcade/lbreakout: Drop old (diff) | |
download | gentoo-3422dd53a76aa50b80d5f3569968e583603e52ab.tar.gz gentoo-3422dd53a76aa50b80d5f3569968e583603e52ab.tar.bz2 gentoo-3422dd53a76aa50b80d5f3569968e583603e52ab.zip |
games-arcade/lbreakout2: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade/lbreakout2')
-rw-r--r-- | games-arcade/lbreakout2/lbreakout2-2.6.5-r1.ebuild | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/games-arcade/lbreakout2/lbreakout2-2.6.5-r1.ebuild b/games-arcade/lbreakout2/lbreakout2-2.6.5-r1.ebuild new file mode 100644 index 000000000000..5c9a684ab321 --- /dev/null +++ b/games-arcade/lbreakout2/lbreakout2-2.6.5-r1.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools desktop flag-o-matic gnome2-utils + +levels_V=20141220 +themes_V=20141220 + +DESCRIPTION="Breakout clone written with the SDL library" +HOMEPAGE="http://lgames.sourceforge.net/LBreakout2/" +SRC_URI=" mirror://sourceforge/lgames/${P}.tar.gz + mirror://sourceforge/lgames/add-ons/lbreakout2/${PN}-levelsets-${levels_V}.tar.gz + themes? ( mirror://sourceforge/lgames/add-ons/lbreakout2/${PN}-themes-${levels_V}.tar.gz )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="nls themes" + +RDEPEND=" + media-libs/libpng:0= + sys-libs/zlib + media-libs/libsdl[sound,joystick,video] + media-libs/sdl-net + media-libs/sdl-mixer + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) +" + +src_unpack() { + unpack ${P}.tar.gz + + cd "${S}/client/levels" + unpack ${PN}-levelsets-${levels_V}.tar.gz + + if use themes ; then + mkdir "${WORKDIR}/themes" + cd "${WORKDIR}/themes" + unpack ${PN}-themes-${themes_V}.tar.gz + + # Delete a few duplicate themes (already shipped with lbreakout2 + # tarball). Some of them have different case than built-in themes, so it + # is harder to just compare if the filename is the same. + rm -f absoluteB.zip oz.zip moiree.zip + for f in *.zip; do + unzip -q "$f" && rm -f "$f" || die + done + fi +} + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-gentoo.patch + eautoreconf +} + +src_configure() { + filter-flags -O? + econf \ + --enable-sdl-net \ + --localedir=/usr/share/locale \ + --with-docdir="/usr/share/doc/${PF}/html" \ + $(use_enable nls) +} + +src_install() { + default + + if use themes ; then + insinto /usr/share/lbreakout2/gfx + doins -r "${WORKDIR}/themes/"* + fi + + newicon client/gfx/win_icon.png ${PN}.png + newicon -s 32 client/gfx/win_icon.png ${PN}.png + make_desktop_entry lbreakout2 LBreakout2 +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |