mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
2be3df4e6c
Hat: portmgr
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: L-Breeder
|
|
# Date created: 30 May 2002
|
|
# Whom: David Yeske <dyeske@gmail.com> et al
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= LBreeder
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 12
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://www.simonyi.ox.ac.uk/dawkins/software/yan/L-Breeder/
|
|
DISTNAME= ${PORTNAME}-source
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Allows you to display and breed L-system forms
|
|
|
|
NO_WRKSUBDIR= yes
|
|
BUILD_WRKSRC= ${WRKSRC}/Unix
|
|
|
|
USE_ZIP= yes
|
|
USE_GL= glut
|
|
USE_GMAKE= yes
|
|
USE_WX= 2.4
|
|
|
|
.if defined(WITH_OPTIMIZED_CFLAGS)
|
|
CFLAGS+= -O3 -ffast-math
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(WITH_OPTIMIZED_CFLAGS)
|
|
@${ECHO_MSG} "You can enable additional compilation optimizations"
|
|
@${ECHO_MSG} "by defining WITH_OPTIMIZED_CFLAGS"
|
|
.endif
|
|
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/documentation/* ${DOCSDIR}
|
|
.endif
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/Lsystems/* ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|