39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.58 2021/05/24 19:54:24 wiz Exp $
|
|
|
|
DISTNAME= sed-4.8
|
|
PKGNAME= g${DISTNAME}
|
|
PKGREVISION= 1
|
|
CATEGORIES= textproc editors
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=sed/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://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_GCC_RUNTIME= yes
|
|
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
|
|
|
|
# Prevent "Please add USE_TOOLS+=perl" warning at the end of configure phase.
|
|
CONFIGURE_ENV+= PERL=
|
|
|
|
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"
|