c706434e7f
* 0 address behaves correctly in single-file (-i and -s) mode. * documentation improvements. * tested with many hosts and compilers. * updated regex matcher from upstream, with many bugfixes and speedups. * the `N' command's feature that is detailed in the BUGS file was disabled by the first change below in sed 4.0.8. The behavior has now been restored, and is only enabled if POSIXLY_CORRECT behavior is not requested.
32 lines
853 B
Makefile
32 lines
853 B
Makefile
# $NetBSD: Makefile,v 1.16 2004/01/21 22:53:22 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= sed-4.0.9
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= textproc editors
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=sed/}
|
|
|
|
MAINTAINER= seb@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/sed/sed.html
|
|
COMMENT= GNU implementation of sed, the POSIX stream editor
|
|
|
|
USE_BUILDLINK2= YES
|
|
USE_PKGLOCALEDIR= YES
|
|
GNU_CONFIGURE= YES
|
|
|
|
INFO_FILES= sed.info
|
|
|
|
TEST_TARGET= check
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if defined(GNU_PROGRAM_PREFIX)
|
|
CONFIGURE_ARGS+= --program-prefix=${GNU_PROGRAM_PREFIX}
|
|
.endif
|
|
PLIST_SUBST+= GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX}
|
|
BUILD_DEFS+= GNU_PROGRAM_PREFIX
|
|
|
|
CONFIGURE_ARGS+= --with-libiconv=${BUILDLINK_PREFIX.iconv}
|
|
|
|
.include "../../converters/libiconv/buildlink2.mk"
|
|
.include "../../devel/gettext-lib/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|