1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-30 21:49:25 +00:00
freebsd-ports/misc/findutils/Makefile

80 lines
1.3 KiB
Makefile
Raw Normal View History

2000-06-02 05:35:49 +00:00
# New ports collection makefile for: findutils
# Date created: 29 March 2000
# Whom: Robert Withrow <witr@rwwa.com>
#
# $FreeBSD$
#
PORTNAME= findutils
PORTVERSION= 4.1
PORTREVISION= 1
2000-06-02 05:35:49 +00:00
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= findutils
2001-01-28 22:57:06 +00:00
MAINTAINER= clefevre@citeweb.net
2000-06-02 05:35:49 +00:00
GNU_CONFIGURE= yes
#
# Global variables
#
CONFIGURE_ARGS= --program-prefix=g # --localstatedir=${LOCALSTATEDIR}
2000-06-02 05:35:49 +00:00
MAKE_ARGS= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
USE_GMAKE= yes
MAN1= gfind.1 gxargs.1 glocate.1 gupdatedb.1
MAN5= glocatedb.5
#
# Local variables
#
LOCALSTATEDIR?= /var/db
INSTALL_INFO?= install-info
#
# Post-extract
#
post-extract:
@${RM} -f ${WRKSRC}/doc/${PORTNAME:S/utils//}.info*
#
# Post-patch
#
post-patch:
@${PERL} -pi.fbsd -e 's|makeinfo|makeinfo --no-split|g' \
${WRKSRC}/doc/Makefile.in
#
# Post-configure
#
# --localstatedir= isn't handled right now, so, do it manually.
post-configure:
@${PERL} -pi.fbsd -e 's|\$$\(prefix\)/var|${LOCALSTATEDIR}|g' \
${WRKSRC}/Makefile ${WRKSRC}/locate/Makefile
#
# Post-install
#
post-install: install-info remove-catman
install-info:
@${INSTALL_INFO} ${PREFIX}/info/${PORTNAME:S/utils//}.info ${PREFIX}/info/dir
remove-catman:
.for mansect in 1 5
.for man in ${MAN${mansect}}
@${RM} -f ${MAN1PREFIX}/man/cat${mansect}/${man}
.endfor
.endfor
2000-06-02 05:35:49 +00:00
.include <bsd.port.mk>