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/media-libs/urt/urt-3.1b-r1.ebuild

74 lines
1.9 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/urt/urt-3.1b-r1.ebuild,v 1.29 2009/12/26 17:40:18 pva Exp $
inherit eutils toolchain-funcs
DESCRIPTION="the Utah Raster Toolkit is a library for dealing with raster images"
HOMEPAGE="http://www.cs.utah.edu/gdc/projects/urt/"
SRC_URI="ftp://ftp.iastate.edu/pub/utah-raster/${P}.tar.Z"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="gif gs tiff X"
DEPEND="X? ( x11-libs/libXext
x11-proto/xextproto
)
gif? ( media-libs/giflib )
tiff? ( media-libs/tiff )
gs? ( app-text/ghostscript-gpl )"
S=${WORKDIR}
urt_config() {
use $1 && echo "#define $2" || echo "##define $2"
}
src_unpack() {
unpack ${A}
cd "${S}"
rm -f bin/README
epatch "${FILESDIR}"/${P}-rle-fixes.patch
epatch "${FILESDIR}"/${P}-compile-updates.patch
epatch "${FILESDIR}"/${P}-tempfile.patch
epatch "${FILESDIR}"/${P}-build-fixes.patch
epatch "${FILESDIR}/${P}-make.patch"
# punt bogus manpage #109511
rm -f man/man1/template.1
# stupid OS X declares a stack_t type already #107428
sed -i -e 's:stack_t:_urt_stack:g' tools/clock/rleClock.c || die
sed -i -e '/^CFLAGS/s: -O : :' makefile.hdr
cp "${FILESDIR}"/gentoo-config config/gentoo
cat >> config/gentoo <<-EOF
$(urt_config X X11)
$(urt_config gs POSTSCRIPT)
$(urt_config tiff TIFF)
ExtraCFLAGS = ${CFLAGS}
MFLAGS = ${MAKEOPTS}
# prevent circular depend #111455
$(has_version media-libs/giflib && urt_config gif GIF)
EOF
}
src_compile() {
./Configure config/gentoo || die "config"
emake CC=$(tc-getCC) || die "emake"
}
src_install() {
# this just installs it into some local dirs
make install || die
dobin bin/* || die "dobin"
dolib.a lib/librle.a || die "dolib.a"
insinto /usr/include
doins include/rle*.h || die "doins include"
doman man/man?/*.[135]
dodoc *-changes CHANGES* README blurb
}