forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blobwars-2.00.ebuild
52 lines (44 loc) · 1.07 KB
/
blobwars-2.00.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit gnome2-utils xdg
DESCRIPTION="Platform game about a blob and his quest to rescue MIAs from an alien invader"
HOMEPAGE="https://sourceforge.net/projects/blobwars/ https://sourceforge.net/apps/mediawiki/blobwars/index.php?title=Main_Page"
SRC_URI="mirror://sourceforge/blobwars/${P}.tar.gz"
LICENSE="BSD CC-BY-SA-3.0 CC-BY-3.0 GPL-2 LGPL-2.1 fairuse public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
media-libs/libsdl2
media-libs/sdl2-mixer
media-libs/sdl2-ttf
media-libs/sdl2-image
media-libs/sdl2-net
sys-libs/zlib
virtual/libintl
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
src_prepare() {
default
sed -i -e "/-Werror/d" Makefile || die
}
src_compile() {
emake \
RELEASE="1" \
USEPAK="1"
}
src_install() {
emake \
BINDIR="/usr/bin/" \
USEPAK="1" \
DESTDIR="${D}" \
DOCDIR="/usr/share/doc/${PF}/html/" \
install
mv -vf \
"${D}"/usr/share/doc/${PF}/html/{changes,hacking,porting,readme} \
"${D}"/usr/share/doc/${PF}/
}