1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/sysutils/asrpages/Makefile
Satoshi Asami 5114e2637e Adjust port Makefiles to new EXTRACT_* variable defaults. See log of
bsd.port.mk rev. 1.304 for details on the change.

The fix here is one of the following.

(1) Define USE_BZIP2 instead of BUILD_DEPENDS on bzip2 and redefining
    EXTRACT_* commands.

(2) Change ${EXTRACT_CMD} to ${TAR} when the command is obviously
    calling the "tar" command (i.e., arguments like "-xzf" are spelled
    out).

(3) If ${EXTRACT_CMD} is called directly with ${EXTRACT_BEFORE_ARGS},
    add ${EXTRACT_AFTER_ARGS} to the command line as well.

(4) If any of EXTRACT_CMD, EXTRACT_BEFORE_ARGS or EXTRACT_AFTER_ARGS
    is set, define the other two too.
1999-02-03 11:12:01 +00:00

39 lines
945 B
Makefile

# New ports collection makefile for: asrpages
# Version required: 0.1
# Date created: 6 Nov 1997
# Whom: Sheldon Hearn <axl@iafrica.com>
#
# $Id: Makefile,v 1.5 1998/09/19 05:48:06 steve Exp $
#
DISTNAME= asrpages
PKGNAME= asrpages-0.1
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.winternet.com/users/eric/
DISTFILES= asr.pages.tar
MAINTAINER= axl@iafrica.com
EXTRACT_CMD= ${TAR}
EXTRACT_BEFORE_ARGS= -xf
EXTRACT_AFTER_ARGS= # empty
NO_WRKSUBDIR= yes
NO_BUILD= yes
MAN1= c.1 rtfm.1 slave.1 sysadmin.1 think.1 whack.1
MAN2= people.2
MAN3= chastise.3
MAN5= normality.5
MAN8= bosskill.8 ctluser.8 guru.8 knife.8 lart.8 luser.8 nuke.8 \
pmsd.8
do-install:
cd ${WRKSRC} && \
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1 && \
${INSTALL_MAN} ${MAN2} ${PREFIX}/man/man2 && \
${INSTALL_MAN} ${MAN3} ${PREFIX}/man/man3 && \
${INSTALL_MAN} ${MAN5} ${PREFIX}/man/man5 && \
${INSTALL_MAN} ${MAN8} ${PREFIX}/man/man8
.include <bsd.port.mk>