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/games-action/violetland/violetland-0.4.3.ebuild

69 lines
1.8 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/violetland/violetland-0.4.3.ebuild,v 1.4 2012/08/29 04:23:28 mr_bones_ Exp $
EAPI=2
inherit eutils multilib toolchain-funcs flag-o-matic cmake-utils games
DESCRIPTION="Help a girl by name of Violet to struggle with hordes of monsters."
HOMEPAGE="http://code.google.com/p/violetland/"
SRC_URI="http://violetland.googlecode.com/files/${PN}-v${PV}-src.zip"
LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-libs/libsdl[audio,video]
media-libs/sdl-image[png]
media-libs/sdl-mixer[vorbis]
media-libs/sdl-ttf
<dev-libs/boost-1.50
>=dev-libs/boost-1.37
virtual/opengl
virtual/glu"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${PN}-v${PV}
src_prepare() {
sed -i \
-e "/README_EN.TXT/d" \
-e "/README_RU.TXT/d" \
CMakeLists.txt || die "sed failed"
# how do I hate boost? Let me count the ways...
local boost_ver=$(best_version "<dev-libs/boost-1.50")
boost_ver=${boost_ver/*boost-/}
boost_ver=${boost_ver%.*}
boost_ver=${boost_ver/./_}
einfo "Using boost version ${boost_ver}"
append-cxxflags \
-I/usr/include/boost-${boost_ver}
append-ldflags \
-L/usr/$(get_libdir)/boost-${boost_ver}
export BOOST_INCLUDEDIR="/usr/include/boost-${boost_ver}"
export BOOST_LIBRARYDIR="/usr/$(get_libdir)/boost-${boost_ver}"
}
src_configure() {
mycmakeargs=(
"-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
"-DDATA_INSTALL_DIR=${GAMES_DATADIR}"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
DOCS="README_EN.TXT CHANGELOG" cmake-utils_src_install
newicon icon-light.png ${PN}.png
make_desktop_entry ${PN} VioletLand
prepgamesdirs
}