mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b36ae732b4
- Fix symbolic-link'ed ${CAT_DIR} problem. - Add -c option: specify top-level catalog file(default:${CAT_DIR}/catalog). - Add -v option: verbose mode. - Modify some messages. Obtained from: Hiroki Sato <hrs@FreeBSD.org>
38 lines
673 B
Makefile
38 lines
673 B
Makefile
# 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.1
|
|
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>
|