mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
cd756fcca1
PR: 54801 Submitted by: KATO Tsuguru <tkato@prontomail.com> Approved by: fjoe (mentor) (implicit)
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: vamos
|
|
# Date created: Mar 15, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vamos
|
|
PORTVERSION= 0.3.3
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An automotive simulation framework
|
|
|
|
BUILD_DEPENDS= ${X11BASE}/lib/libsgmisc.a:${PORTSDIR}/devel/simgear \
|
|
${X11BASE}/lib/libplibul.a:${PORTSDIR}/x11-toolkits/plib
|
|
LIB_DEPENDS= sigc.1:${PORTSDIR}/devel/libsigc++ \
|
|
png.5:${PORTSDIR}/graphics/png
|
|
|
|
USE_MESA= yes
|
|
USE_GETOPT_LONG= yes
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
INSTALLS_SHLIB= yes
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include/libpng -I${X11BASE}/include \
|
|
${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${X11BASE}/lib -L${X11BASE}/lib -lGL -lGLU -lglut \
|
|
${PTHREAD_LIBS}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^CXXFLAGS/d' ${WRKSRC}/configure
|
|
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
'/^AM_CXXFLAGS/d'
|
|
|
|
.include <bsd.port.mk>
|