forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
t4k-common-0.1.1.ebuild
46 lines (38 loc) · 947 Bytes
/
t4k-common-0.1.1.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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils
DESCRIPTION="A library of code shared between tuxmath and tuxtype"
HOMEPAGE="http://tux4kids.alioth.debian.org/tuxmath/download.php"
SRC_URI="http://alioth.debian.org/frs/download.php/3540/t4k_common-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="static-libs svg"
RDEPEND="dev-libs/libxml2:2
media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer
media-libs/sdl-net
media-libs/sdl-ttf
media-libs/sdl-pango
svg? (
gnome-base/librsvg:2
media-libs/libpng:0
x11-libs/cairo
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/t4k_common-${PV}
src_prepare() {
epatch "${FILESDIR}"/${P}-libpng.patch
}
src_configure() {
econf \
$(usex svg "" "--without-rsvg") \
$(use_enable static-libs static)
}
src_install() {
default
use static-libs || prune_libtool_files --all
}