12b220d2ba
PR: ports/147486 Submitted by: Alain Wolf <wolf@digris.ch>
73 lines
1.6 KiB
Makefile
73 lines
1.6 KiB
Makefile
# New ports collection makefile for: sed
|
|
# Date created: 12 October 2000
|
|
# Whom: Cyrille Lefevre <clefevre@citeweb.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sed
|
|
PORTVERSION= 4.2.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMEPREFIX= g
|
|
|
|
MAINTAINER= gabor@FreeBSD.org
|
|
COMMENT= The GNU stream editor
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= MAKEINFO="makeinfo --no-split"
|
|
|
|
OPTIONS= NLS "NLS support" on
|
|
|
|
PATCH_SUBDIRS= . doc lib sed
|
|
DATADIR= ${PREFIX}/share/${PKGBASE}
|
|
SAMP_FILES= binary*.sed dc.sed
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
PORTDOCS= AUTHORS BUGS COPYING COPYING.DOC NEWS README THANKS
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
USE_GMAKE= yes
|
|
INFO= sed
|
|
MAN1= gsed.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_ICONV= yes
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB= NLS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's,^\* sed:,* GNU sed:,' \
|
|
${WRKSRC}/doc/config.texi
|
|
@${REINPLACE_CMD} "s|#include <alloca.h>||" ${WRKSRC}/lib/regex_internal.h
|
|
|
|
post-configure:
|
|
.for subdir in ${PATCH_SUBDIRS}
|
|
@${REINPLACE_CMD} -e 's|s,x,x,|s,^,g,|' \
|
|
-e 's|^doc_DATA|#doc_DATA|' \
|
|
${WRKSRC}/${subdir}/Makefile
|
|
.endfor
|
|
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
.for f in ${SAMP_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/testsuite/${f} ${EXAMPLESDIR}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
# Maintainer only
|
|
test:
|
|
@cd ${WRKSRC}/testsuite; ${MAKE} check
|
|
|
|
.include <bsd.port.post.mk>
|