36 lines
775 B
Makefile
36 lines
775 B
Makefile
# $OpenBSD: Makefile,v 1.3 2010/11/15 19:45:58 espie Exp $
|
|
|
|
COMMENT = C++ application-level logging library
|
|
|
|
DISTNAME = glog-0.3.1
|
|
|
|
SHARED_LIBS += glog 0.0 # 0.2.1
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://google-glog.googlecode.com/
|
|
|
|
MAINTAINER = Vincent Auclair <auclair.vincent@gmail.com>
|
|
|
|
# New BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += gflags m pthread stdc++
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/files/
|
|
|
|
LIB_DEPENDS = devel/gflags
|
|
REGRESS_DEPENDS = devel/gtest
|
|
BUILD_DEPENDS += ${REGRESS_DEPENDS}
|
|
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED} \
|
|
--with-gflags=${LOCALBASE}
|
|
MAKE_FLAGS = docdir='$$(prefix)/share/doc/glog'
|
|
|
|
.include <bsd.port.mk>
|