blob: 6fef0db3e77fa59649781e67b3f6a5b4c556cdf5 (
plain)
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop xdg
DESCRIPTION="Updated clone of Westood Studios' Dune II"
HOMEPAGE="http://dunelegacy.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="media-libs/libsdl2[sound,threads,video]
media-libs/sdl2-mixer[midi]"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-init-mid.patch
)
src_prepare() {
default
# Prepend upstream flags.
sed -i -r 's/^(C.*FLAGS)=[^$]+$/\0" ${\1}"/' configure{,.ac} || die
}
src_install() {
default
doicon -s scalable ${PN}.svg
doicon -s 48 ${PN}.png
newicon -s 128 ${PN}-128x128.png ${PN}.png
make_desktop_entry ${PN} "Dune Legacy"
}
|