6527ef2070
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
47 lines
1 KiB
Makefile
47 lines
1 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= 11
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://www.simonyi.ox.ac.uk/dawkins/software/yan/L-Breeder/
|
|
DISTNAME= ${PORTNAME}-source
|
|
|
|
MAINTAINER= dyeske@gmail.com
|
|
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>
|