freebsd-ports/devel/glog/Makefile
Dmitry Marakasov 6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00

46 lines
1.1 KiB
Makefile

# New ports collection makefile for: google-glog
# Date created: Oct 14, 2008
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= glog
DISTVERSION= 0.3.1
CATEGORIES= devel
MASTER_SITES= GOOGLE_CODE
MAINTAINER= clsung@FreeBSD.org
COMMENT= A library of C++ classes for flexible logging
LIB_DEPENDS+= execinfo.1:${PORTSDIR}/devel/libexecinfo
GNU_CONFIGURE= yes
USE_GNOME= gnomehack
USE_LDCONFIG= yes
USE_GCC= 4.2+
PROJECTHOST= google-glog
LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} =="ia64" || ${ARCH} =="powerpc" || ${ARCH} =="sparc64"
EXTRA_PATCHES= ${FILESDIR}/extra-patch-src-utilities.cc
.endif
.if ${ARCH} == "amd64"
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src-utilities.h
.endif
post-patch:
@${REINPLACE_CMD} -e 's|^docdir.*|docdir = ${DOCSDIR}|' ${WRKSRC}/Makefile.in
.if defined(NOPORTDOCS)
@${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>