diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-06-14 22:12:04 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-06-15 16:00:20 -0400 |
commit | 0256617a98c445b4ce69f9ecd1207a93b2b364e0 (patch) | |
tree | 841ce3fc0e9e14a7d733166e28fd6e8eb51afa3e /games-board/atakks | |
parent | games-board/pasang-emas: EAPI bump, remove unused eclass, fix LICENSE (diff) | |
download | gentoo-0256617a98c445b4ce69f9ecd1207a93b2b364e0.tar.gz gentoo-0256617a98c445b4ce69f9ecd1207a93b2b364e0.tar.bz2 gentoo-0256617a98c445b4ce69f9ecd1207a93b2b364e0.zip |
games-board/atakks: add missing EPREFIX, minor fixups
- remove homepage, no upstream
- license to GPL-2+ ("or later" is stated in French)
- add missing einstalldocs
- remove non-XDG compliant .bmp icon (typically not displayed)
- revbump given EPREFIX affects runtime and added minor [video] to SDL
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-board/atakks')
-rw-r--r-- | games-board/atakks/atakks-1.0-r2.ebuild (renamed from games-board/atakks/atakks-1.0-r1.ebuild) | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/games-board/atakks/atakks-1.0-r1.ebuild b/games-board/atakks/atakks-1.0-r2.ebuild index c714c0d43dc3..8da2077bfe0e 100644 --- a/games-board/atakks/atakks-1.0-r1.ebuild +++ b/games-board/atakks/atakks-1.0-r2.ebuild @@ -5,21 +5,17 @@ EAPI=7 inherit desktop toolchain-funcs -MY_P="${P/-/_}" DESCRIPTION="Clone of Ataxx" -HOMEPAGE="http://team.gcu-squad.org/~fab" -# no version upstream -#SRC_URI="http://team.gcu-squad.org/~fab/down/${PN}.tgz" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI="mirror://gentoo/${P}.tar.gz" +S="${WORKDIR}/${PN}_${PV}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="media-libs/libsdl:0" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" +RDEPEND="media-libs/libsdl[video]" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${PV}-warnings.patch @@ -29,21 +25,22 @@ PATCHES=( src_prepare() { default - # Modify game data paths - sed -i \ - -e "s:SDL_LoadBMP(\":SDL_LoadBMP(\"/usr/share/${PN}/:" \ - main.c || die + sed -i "/LoadBMP/s|\"|\"${EPREFIX}/usr/share/${PN}/|" main.c || die } src_compile() { tc-export CC + emake E_CFLAGS="${CFLAGS}" } src_install() { dobin ${PN} + insinto /usr/share/${PN} - doins *bmp - newicon icon.bmp ${PN}.bmp - make_desktop_entry ${PN} Atakks /usr/share/pixmaps/${PN}.bmp + doins *.bmp + + make_desktop_entry ${PN} Atakks applications-games + + einstalldocs } |