You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-games/t4k-common/t4k-common-0.1.1.ebuild

47 lines
947 B

# 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
}