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.

49 lines
1.2 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/tic98/tic98-1.01-r3.ebuild,v 1.5 2009/07/05 12:24:52 maekke Exp $
inherit eutils
DESCRIPTION="compressor for black-and-white images, in particular scanned documents"
HOMEPAGE="http://membled.com/work/mirror/tic98/"
SRC_URI="http://membled.com/work/mirror/tic98/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND=""
RESTRICT="test"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-macos.patch
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.diff
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
# respect CFLAGS and LDFLAGS
sed -i -e "s:CFLAGS= -O -Wall -Wno-unused:CFLAGS=${CFLAGS}:" \
-e "s:LIBS= -lm #-L/home/singlis/linux/lib -lccmalloc -ldl:LIBS= -lm ${LDFLAGS}:" \
-e "s:CC= gcc -pipe :CC=$(tc-getCC):" \
-e "s:CPP= gcc -pipe:CPP=$(tc-getCPP):" \
Makefile || die
}
src_compile() {
emake all || die
emake all2 || die
}
src_install() {
dodir /usr/bin
emake BIN="${D}"usr/bin install || die
# collision with media-gfx/netpbm, see bug #207534
rm "${D}"/usr/bin/pbmclean || die
}