blob: 018c9876f7c73083d179e759b6af369d2cb323cb (
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
32
33
34
|
# Created by: will
# $FreeBSD$
PORTNAME= clhep
PORTVERSION= 2.1.0.1
CATEGORIES= science
MASTER_SITES= http://wwwasd.web.cern.ch/wwwasd/lhc++/clhep/DISTRIBUTION/tarFiles/
EXTRACT_SUFX= .tgz
MAINTAINER= dhn@FreeBSD.org
COMMENT= Object-oriented toolkit for particle physics applications by CERN
WRKSRC= ${WRKDIR}/${PORTVERSION}/${PORTNAME:U}
USES= gmake perl5
USE_PERL5= build
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-gmake
USE_LDCONFIG= yes
PLIST_SUB= VERSION="${PORTVERSION}"
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700000
BROKEN= Does not compile on FreeBSD 6.X
.endif
post-patch:
@${FIND} ${WRKSRC} -name "configure" | ${XARGS} ${REINPLACE_CMD} -e \
'/AM_CXXFLAGS=/s|-O ||g'
.include <bsd.port.post.mk>
|