1fd58b933b
REG_STARTEND macro, it doesn't work as expected. A simple test case is: printf '\0\n\0\n' | nbsed /a/d This test does not yet work as expected, but at least it doesn't cause segmentation faults anymore. Handling of '\0' bytes must be improved.
29 lines
695 B
Makefile
29 lines
695 B
Makefile
# $NetBSD: Makefile,v 1.15 2007/03/07 19:18:39 rillig Exp $
|
|
|
|
DISTNAME= nbsed-20040821
|
|
PKGREVISION= 1
|
|
CATEGORIES= textproc pkgtools
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.NetBSD.org/
|
|
COMMENT= NetBSD-current's sed(1)
|
|
|
|
NO_CHECKSUM= yes
|
|
NO_MTREE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --program-transform-name="s,sed,nbsed,"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if defined(LIBNBCOMPAT_STYLE) && (${LIBNBCOMPAT_STYLE} == "inplace")
|
|
. include "../../pkgtools/libnbcompat/inplace.mk"
|
|
.else
|
|
. include "../../pkgtools/libnbcompat/buildlink3.mk"
|
|
.endif
|
|
|
|
do-extract:
|
|
@${CP} -R ${FILESDIR} ${WRKSRC}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|