blob: 165023682b81f0b9194bab3fc9b4ffad51594b51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# ex:ts=8
# Ports collection makefile for: beagle
# Date created: Jun 9, 2004
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= beagle
PORTVERSION= 2.1.5
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= An Evolutionary Computation Framework
USE_GCC= 3.3
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-optimization
INSTALLS_SHLIB= yes
PLIST_SUB= PORTVERSION=${PORTVERSION}
post-install:
@${FIND} ${PREFIX}/include/beagle ! -type d | \
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
@${FIND} ${PREFIX}/include/beagle -type d | ${SORT} -r | \
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
.include <bsd.port.mk>
|