diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-10-27 08:06:53 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-10-27 08:06:53 +0000 |
commit | 80e70145a6a7356eaa3d3fbb1b5322acf48fcdd5 (patch) | |
tree | dcd87c7370bed901483208cbe11ab3a4aaefb66f /textproc/mkcatalog/Makefile | |
parent | bd96cefe0ce4a0223a3b1620850681196898a037 (diff) |
Notes
Diffstat (limited to 'textproc/mkcatalog/Makefile')
-rw-r--r-- | textproc/mkcatalog/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/textproc/mkcatalog/Makefile b/textproc/mkcatalog/Makefile new file mode 100644 index 000000000000..438182e6550a --- /dev/null +++ b/textproc/mkcatalog/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: mkcatalog +# Date created: 26 Oct 2000 +# Whom: shige +# +# $FreeBSD$ +# +# This port is self contained in the src directory. +# + +PORTNAME= mkcatalog +PORTVERSION= 1.0 +CATEGORIES= textproc +MASTER_SITES= # none +DISTFILES= # none + +MAINTAINER= shige@FreeBSD.org + +NO_WRKSUBDIR= yes +NO_CHECKSUM= yes +NO_BUILD= yes +SCRIPTS_ENV= CONFIGURE_TARGETS=${CONFIGURE_TARGETS} + +SRC= ${.CURDIR}/src +CONFIGURE_TARGETS= mkcatalog + +do-fetch: + @${DO_NADA} + +pre-configure: + @for i in ${CONFIGURE_TARGETS} ; do \ + ${CP} ${SRC}/$${i}.in ${WRKDIR} ; \ + done + +do-install: + @${INSTALL_SCRIPT} ${WRKDIR}/mkcatalog ${PREFIX}/sbin/mkcatalog + +.include <bsd.port.mk> |