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-util/grfcodec/grfcodec-6.0.4.ebuild

51 lines
1.2 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/grfcodec-6.0.4.ebuild,v 1.5 2014/10/27 15:58:42 ago Exp $
EAPI=5
if [ "${PV%9999}" != "${PV}" ] ; then
SCM=mercurial
EHG_REPO_URI="http://hg.openttdcoop.org/${PN}"
fi
inherit toolchain-funcs ${SCM}
DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec"
[[ -z ${SCM} ]] && SRC_URI="http://binaries.openttd.org/extra/${PN}/${PV}/${P}-source.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ppc ppc64 x86"
IUSE=""
[[ -n ${SCM} ]] && S=${WORKDIR}/${PN}
DEPEND="!games-util/nforenum
dev-lang/perl
dev-libs/boost
media-libs/libpng:0"
RDEPEND=""
src_prepare() {
# Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS
cat > Makefile.local <<-__EOF__
CXX=$(tc-getCXX)
BOOST_INCLUDE=/usr/include
CXXFLAGS=${CXXFLAGS}
LDOPT=${LDFLAGS}
UPX=
V=1
FLAGS=
EXE=
__EOF__
sed -i -e 's/-O2//g' Makefile || die
}
src_install() {
dobin grfcodec grfid grfstrip nforenum
doman docs/*.1
dodoc changelog.txt docs/*.txt
}