mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
5005b67362
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)
31 lines
568 B
Makefile
31 lines
568 B
Makefile
# Created by: Dereckson <dereckson@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= malbolge
|
|
PORTVERSION= 0.1.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://cdn.bitbucket.org/dereckson/${PORTNAME}/downloads/
|
|
|
|
MAINTAINER= dereckson@gmail.com
|
|
COMMENT= An esoteric language
|
|
|
|
PLIST_FILES= bin/malbolge
|
|
|
|
PORTDOCS= *
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/malbolge ${PREFIX}/bin
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/malbolge.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|