mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
053fdb6a6b
(Part 2)
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: dynamechs
|
|
# Date created: Dec 6, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dynamechs
|
|
PORTVERSION= 4.0.p1
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:S/.p/pre/}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Multibody Dynamic Simulation Library
|
|
|
|
USE_BZIP2= yes
|
|
USE_MESA= yes
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= OPENGLINCDIR="${X11BASE}/include" \
|
|
OPENGLLIBDIR="${X11BASE}/lib" \
|
|
CXXFLAGS="${CXXFLAGS} ${PTHREAD_CFLAGS}" \
|
|
LDFLAGS="${PTHREAD_LIBS}"
|
|
ALL_TARGET= freebsd
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 500113
|
|
BROKEN= "Does not compile (bad C++ code)"
|
|
.endif
|
|
|
|
do-configure:
|
|
@${CP} -f ${FILESDIR}/make.platform.freebsd ${WRKSRC}/make/
|
|
|
|
do-install:
|
|
.for dir in dm dmu dmGL
|
|
${RM} -f ${WRKSRC}/${dir}/*.orig
|
|
@${MKDIR} ${PREFIX}/include/${PORTNAME}/${dir}
|
|
${INSTALL_DATA} ${WRKSRC}/${dir}/*.h* ${PREFIX}/include/${PORTNAME}/${dir}
|
|
${INSTALL_DATA} ${WRKSRC}/lib/platform.freebsd/lib${dir}.so ${PREFIX}/lib
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|