mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
34 lines
841 B
Makefile
34 lines
841 B
Makefile
# New ports collection makefile for: boxes
|
|
# Date created: 3 March 2000
|
|
# Whom: Patrick Seal (patseal@hyperhost.net)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= boxes
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://boxes.thomasjensen.com/download/ \
|
|
${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= utils/text
|
|
EXTRACT_SUFX= .src.tar.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Draws ASCII-art configurable boxes around text or code
|
|
|
|
MAN1= boxes.1
|
|
USE_GMAKE= yes
|
|
USE_BISON= yes
|
|
ALL_TARGET= boxes
|
|
MAKE_ARGS= GLOBALCONF=${GLOBALCONF} CFLAGS_ADDTL="${CFLAGS}"
|
|
|
|
GLOBALCONF= ${PREFIX}/share/boxes/boxes-config
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/boxes ${PREFIX}/bin
|
|
${MKDIR} ${PREFIX}/share/boxes
|
|
${INSTALL_DATA} ${WRKSRC}/boxes-config ${PREFIX}/share/boxes
|
|
${INSTALL_MAN} ${WRKSRC}/doc/$(MAN1) ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|