mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +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.
31 lines
679 B
Makefile
31 lines
679 B
Makefile
# New ports collection makefile for: xpcd
|
|
# Date created: 27 October 2001
|
|
# Whom: Juha Ylitalo
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xpcd
|
|
PORTVERSION= 2.08
|
|
PORTREVISION= 2
|
|
CATEGORIES+= graphics
|
|
MASTER_SITES= http://bytesex.org/misc/
|
|
|
|
MAINTAINER?= jylitalo@iki.fi
|
|
COMMENT?= PhotoCD tool collection
|
|
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
tiff.4:${PORTSDIR}/graphics/tiff
|
|
|
|
# USE_IMAKE= yes
|
|
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
USE_GMAKE= yes
|
|
USE_AUTOCONF_VER= 213
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
MAKE_ENV+= LDFLAGS="${LDFLAGS}"
|
|
USE_X_PREFIX= yes
|
|
MAN1= pcdtoppm.1 pcdview.1 xpcd.1
|
|
|
|
.include <bsd.port.mk>
|