diff options
Diffstat (limited to 'misc/boxes/Makefile')
-rw-r--r-- | misc/boxes/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/misc/boxes/Makefile b/misc/boxes/Makefile new file mode 100644 index 000000000000..cde5825a1a26 --- /dev/null +++ b/misc/boxes/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: boxes +# Version required: 1.0 +# Date created: 3 March 2000 +# Whom: Patrick Seal (patseal@hyperhost.net) +# +# $FreeBSD$ +# + +DISTNAME= boxes-1.0 +CATEGORIES= misc +MASTER_SITES= http://www6.informatik.uni-erlangen.de/~tsjensen/software/boxes/download/ \ + ${MASTER_SITE_SUNSITE} +MASTER_SITE_SUBDIR= utils/text +EXTRACT_SUFX= .src.tar.gz + +MAINTAINER= patseal@hyperhost.net + +MAN1= boxes.1 +USE_GMAKE= yes + +do-build: + cd $(WRKSRC); $(GMAKE) + +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> |