1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00
freebsd-ports/comms/openobex/Makefile
Guido Falsi 6e4aa19f99 - Make DOXYGEN option default only when mass building packages
- Bump PORTREVISION

Requested by:	danfe
2013-03-16 10:07:10 +00:00

37 lines
814 B
Makefile

# $FreeBSD$
PORTNAME= openobex
PORTVERSION= 1.7
PORTREVISION= 2
CATEGORIES= comms net
MASTER_SITES= http://www.hendrik-sattler.de/downloads/${PORTNAME}/${PORTVERSION}/
DISTNAME= ${PORTNAME}-${PORTVERSION}-Source
MAINTAINER= madpilot@FreeBSD.org
COMMENT= Open source implementation of the OBEX protocol
USE_CMAKE= yes
USE_LDCONFIG= yes
USE_GNOME= gnomehack
MAKE_JOBS_SAFE= yes
USE_DOS2UNIX= CMakeLists.txt
CMAKE_ARGS+= -DPKGCONFIG_INSTALL_DIR:STRING="${PREFIX}/libdata/pkgconfig"
OPTIONS_DEFINE= DOXYGEN
.if defined(PACKAGE_BUILDING)
OPTIONS_DEFAULT+= DOXYGEN
.endif
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOXYGEN}
BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen
PLIST_SUB+= DOXYGEN=""
.else
CMAKE_ARGS+= -DBUILD_DOCUMENTATION=OFF
PLIST_SUB+= DOXYGEN="@comment "
.endif
.include <bsd.port.mk>