freebsd-ports/x11/bbdock/Makefile
Emanuel Haupt 5005b67362 According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
2014-02-10 13:54:26 +00:00

34 lines
675 B
Makefile

# Created by: Francis Bacque <idroxid01@yahoo.fr>
# $FreeBSD$
PORTNAME= bbdock
PORTVERSION= 0.2.9
PORTREVISION= 1
CATEGORIES= x11
MASTER_SITES= http://bbdock.nethence.com/download/
MAINTAINER= ports@FreeBSD.org
COMMENT= Application launcher for Blackbox-like window manager
LICENSE= BSD
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
GNU_CONFIGURE= yes
USE_XORG= x11
CPPFLAGS+= -I${LOCALBASE}/include/libpng15
PORTDOCS= README
PLIST_FILES= bin/bbdock
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>