mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
34 lines
883 B
Makefile
34 lines
883 B
Makefile
# New ports collection makefile for: simage
|
|
# Date created: 10 May 2002
|
|
# Whom: roland.jesse@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= simage
|
|
PORTVERSION= 1.2.2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://ftp.coin3d.org/pub/coin/src/
|
|
|
|
MAINTAINER= roland.jesse@gmx.net
|
|
COMMENT= Library with image format loaders and front-ends
|
|
|
|
BUILD_DEPENDS= guile:${PORTSDIR}/lang/guile
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.5:${PORTSDIR}/graphics/png \
|
|
ungif.5:${PORTSDIR}/graphics/libungif
|
|
|
|
USE_REINPLACE= yes
|
|
USE_XLIB= yes
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --program-transform-name="s/x/x/" --with-ungif=${LOCALBASE} \
|
|
--with-jpeg --with-png --with-tiff --with-mpeg2enc
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|malloc.h|stdlib.h|g" ${WRKSRC}/src/resize.c
|
|
|
|
.include <bsd.port.mk>
|