1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/textproc/gsed/Makefile
2001-06-09 12:59:34 +00:00

68 lines
1.1 KiB
Makefile

# New ports collection makefile for: sed
# Date created: 12 October 2000
# Whom: Cyrille Lefevre <clefevre@citeweb.net>
#
# $FreeBSD$
#
PORTNAME= sed
PORTVERSION= 3.02
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= g
MAINTAINER= clefevre@redirect.to
#
# Global variables
#
GNU_CONFIGURE= yes
# sed's configure seems to be buggy !
# CONFIGURE_ARGS= --program-prefix=g
USE_GMAKE= yes
.if make(do-install)
# DESTDIR isn't honored. fake it w/ prefix.
MAKE_ARGS= prefix=${PREFIX}
.endif
MAN1= gsed.1
#
# Local variables
#
PATCH_SUBDIRS= . doc lib sed
SAMP_FILES= dc.sed
SAMP_DIR= ${PREFIX}/share/examples/${PKGBASE}
#
# Post-configure
#
post-configure: patch-makefiles
patch-makefiles:
.for subdir in ${PATCH_SUBDIRS}
@${PERL} -pi.fbsd -e 's/s,x,x,/s,^,g,/' ${WRKSRC}/${subdir}/Makefile
.endfor
#
# Post-install
#
post-install: install-sample-files
install-sample-files:
@${MKDIR} ${SAMP_DIR}
.for file in ${SAMP_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${SAMP_DIR}/${file}
.endfor
.include <bsd.port.mk>