diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2013-03-24 06:23:42 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2013-03-24 06:23:42 +0000 |
commit | e70ff5638c39a5028e724b5dc4016100fe04a120 (patch) | |
tree | 861df07add48ba8385dbafb64cc4d7701ea69a66 /devel/libshbuf | |
parent | 25d471b8a03577fb46fbfbe5584b4a2a9d17a666 (diff) | |
download | ports-e70ff5638c39a5028e724b5dc4016100fe04a120.tar.gz ports-e70ff5638c39a5028e724b5dc4016100fe04a120.zip |
- attempt to fix build by bringing in doxygen requirement
Reported by: pointyhat
Notes
Notes:
svn path=/head/; revision=315105
Diffstat (limited to 'devel/libshbuf')
-rw-r--r-- | devel/libshbuf/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/libshbuf/Makefile b/devel/libshbuf/Makefile index a1dc1d4fe024..5f55515ece10 100644 --- a/devel/libshbuf/Makefile +++ b/devel/libshbuf/Makefile @@ -11,10 +11,21 @@ COMMENT= Library for Shared Buffer IPC LICENSE= GPLv2 +OPTIONS_DEFINE= DOXYGEN + USE_AUTOTOOLS= libtool USE_LDCONFIG= yes USES= pathfix GNU_CONFIGURE= yes CONFIGURE_ARGS+=--disable-lynx +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MDOXYGEN} +CONFIGURE_ARGS+= --enable-doxygen +BUILD_DEPENDS+= doxygen>0:${PORTSDIR}/devel/doxygen +.else +CONFIGURE_ARGS+= --disable-doxygen +.endif + .include <bsd.port.mk> |