forked from Lainports/freebsd-ports
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
34 lines
910 B
Makefile
34 lines
910 B
Makefile
# New ports collection makefile for: Coin
|
|
# Date created: 10 May 2002
|
|
# Whom: roland.jesse@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Coin
|
|
PORTVERSION= 2.4.4
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://ftp.coin3d.org/coin/src/all/ \
|
|
ftp://ftp.coin3d.org/pub/coin/src/all/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ 3D graphics library based on the Open Inventor 2.1 API
|
|
|
|
LIB_DEPENDS= openal.0:${PORTSDIR}/audio/openal \
|
|
simage.26:${PORTSDIR}/graphics/simage
|
|
|
|
USE_GL= yes
|
|
USE_REINPLACE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-pthread=yes --enable-threadsafe \
|
|
--enable-3ds-import --enable-sound
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= coin-config.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|DATA install-data-local|DATA|g' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|