summaryrefslogtreecommitdiff
blob: d4e61f438e5316e81483b387136010d4994caec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/netpbm/netpbm-9.12-r4.ebuild,v 1.14 2003/12/13 13:05:36 gmsoft Exp $

S=${WORKDIR}/${P}
DESCRIPTION="A set of utilities for converting to/from the netpbm (and related) formats"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
HOMEPAGE="http://netpbm.sourceforge.net/"

DEPEND=">=media-libs/jpeg-6b
	>=media-libs/tiff-3.5.5
	>=media-libs/libpng-1.2.1"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc amd64 hppa"

# 13/May/2003: Fix for bug #14392  by Jason Wever <weeve@gentoo.org>
# start fix
inherit flag-o-matic
if [ ${ARCH} = "sparc" ]
then
	filter-flags "-O3"
	filter-flags "-O2"
	filter-flags "-O"
fi
# end fix


src_unpack() {
	unpack ${A}
	cd ${S}
	sed -e "s:-O3:${CFLAGS}:" ${FILESDIR}/${PV}/Makefile.config >Makefile.config
}

src_compile() {
	MAKEOPTS="${MAKEOPTS} -j1"
	local myopts=""
	[ -n ${CC} ] && myopts="${myopts} CC=\"${CC}\""
	[ -n ${CXX} ] && myopts="${myopts} CXX=\"${CXX}\""
	einfo "myopts=${myopts}"
	emake ${myopts}|| die "Make failed"
}

src_install () {
	make INSTALL_PREFIX="${D}/usr/" install || die "Install failed"

	# fix broken symlinks
	dosym /usr/bin/gemtopnm /usr/bin/gemtopbm
	dosym /usr/bin/pnmtoplainpnm /usr/bin/pnmnoraw

	insinto /usr/include
	doins pnm/{pam,pnm}.h ppm/{ppm,pgm,pbm}.h
	doins pbmplus.h shhopt/shhopt.h
	dodoc COPYRIGHT.PATENT GPL_LICENSE.txt HISTORY \
		Netpbm.programming README* netpbm.lsm
}