blob: bf9241c07381cbefb2a2f371ae79bc4ec390586f (
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
35
36
|
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
# $FreeBSD$
PORTNAME= glog
PORTVERSION= 0.3.3
CATEGORIES= devel
MASTER_SITES= GOOGLE_CODE
MAINTAINER= clsung@FreeBSD.org
COMMENT= A library of C++ classes for flexible logging
LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo \
gflags:${PORTSDIR}/devel/gflags
GNU_CONFIGURE= yes
USES= pathfix
USE_LDCONFIG= yes
PROJECTHOST= google-glog
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo
NO_STAGE= yes
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's|^docdir.*|docdir = ${DOCSDIR}|' ${WRKSRC}/Makefile.in
.if ! ${PORT_OPTIONS:MDOCS}
@${REINPLACE_CMD} -E -e '/^install-data-am/,/^$$/ s,install-(dist_doc|dist_html|html)DATA,,g' \
${WRKSRC}/Makefile.in
.endif
#regression-test:
# cd ${WRKSRC}; ${MAKE} check
.include <bsd.port.post.mk>
|