mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
0c8bab91b3
programs are installed wit the prefix "g", a la gmake. This produces the interesting program /usr/local/bin/god. PR: 6050 Submitted by: Adrian Wontroba <aw1@stade.co.uk>
33 lines
763 B
Makefile
33 lines
763 B
Makefile
# New ports collection makefile for: textutils
|
|
# Version required: 1.22
|
|
# Date created: 14 May 1998
|
|
# Whom: Adrian Wontroba <aw1@stade.co.uk>
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= textutils-1.22
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
|
|
MAINTAINER= aw1@stade.co.uk
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= gcat.1 gcksum.1 gcomm.1 gcsplit.1 gcut.1 gexpand.1\
|
|
gfmt.1 gfold.1 ghead.1 gjoin.1 gmd5sum.1 gnl.1\
|
|
god.1 gpaste.1 gpr.1 gsort.1 gsplit.1 gsum.1 gtac.1\
|
|
gtail.1 gtr.1 gunexpand.1 guniq.1 gwc.1
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/info/dir ]; then \
|
|
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
|
|
fi
|
|
@install-info ${PREFIX}/info/textutils.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|