* Noteworthy changes in release 4.4 (2017-02-03) [stable] ** Bug fixes sed could segfault when invoked with specific combination of newlines in the input and regex pattern. [Bug introduced in sed-4.3]
34 lines
925 B
Makefile
34 lines
925 B
Makefile
# $NetBSD: Makefile,v 1.50 2017/02/05 19:01:42 wiz Exp $
|
|
|
|
DISTNAME= sed-4.4
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= textproc editors
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=sed/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/sed/sed.html
|
|
COMMENT= GNU implementation of sed, the POSIX stream editor
|
|
LICENSE= gnu-gpl-v3 AND gnu-fdl-v1.3
|
|
|
|
USE_PKGLOCALEDIR= YES
|
|
GNU_CONFIGURE= YES
|
|
INFO_FILES= YES
|
|
TEST_TARGET= check
|
|
|
|
INSTALLATION_DIRS= ${PKGGNUDIR}bin ${PKGGNUDIR}${PKGMANDIR}/man1
|
|
|
|
# at least Solaris-2.9 has issues with grep/egrep
|
|
USE_TOOLS+= grep makeinfo
|
|
|
|
CONFIGURE_ARGS+= --program-prefix=g
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
post-install:
|
|
.for g n in bin/gsed ${PKGGNUDIR}bin/sed ${PKGMANDIR}/man1/gsed.1 ${PKGGNUDIR}${PKGMANDIR}/man1/sed.1
|
|
${LN} -sf ${PREFIX}/${g} ${DESTDIR}${PREFIX}/${n}
|
|
.endfor
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|