mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
3b97673444
PR: ports/4406 Submitted by: Kapil Chowksey <kchowksey@hss.hns.com>
32 lines
824 B
Makefile
32 lines
824 B
Makefile
# New ports collection makefile for: indent
|
|
# Version required: 1.9.1
|
|
# Date created: 28 August 1997
|
|
# Whom: Kapil Chowksey <kchowksey@hss.hns.com>
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= indent-1.9.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
|
|
MAINTAINER= kchowksey@hss.hns.com
|
|
|
|
MAN1= indent.1
|
|
|
|
post-install:
|
|
@mv ${PREFIX}/bin/indent ${PREFIX}/bin/indent
|
|
@strip ${PREFIX}/bin/indent
|
|
@test -d ${PREFIX}/info || ${MKDIR} ${PREFIX}/info \
|
|
&& chmod a+rx ${PREFIX}/info
|
|
@if [ ! -f ${PREFIX}/info/dir ]; then \
|
|
if [ -f /usr/share/info/dir ]; then \
|
|
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
|
|
else \
|
|
touch ${PREFIX}/info/dir ; \
|
|
fi ; \
|
|
fi
|
|
@install-info ${PREFIX}/info/indent.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|