82117a9add
pkgsrc changes: - Switch MASTER_SITES to upstream snapshots instead of using Debian mirrors Changes: 0.63 ---- - vipe: Clean up temp file even when it exits with an error. Thanks, Stig Palmquist. - ts: Fix ts -m %.s to not output negative microseconds. Thanks, Dima Kogan - sponge: Fix bug in -a mode that doubled original content of file when the temp file is located on a different filesystem.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2019/02/02 17:53:41 leot Exp $
|
|
|
|
DISTNAME= moreutils-0.63
|
|
CATEGORIES= misc
|
|
MASTER_SITES= https://git.joeyh.name/index.cgi/moreutils.git/snapshot/
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://joeyh.name/code/moreutils/
|
|
COMMENT= Additional Unix utilities
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= gmake pod2man perl:run
|
|
|
|
BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
|
|
BUILD_DEPENDS+= libxml2-[0-9]*:../../textproc/libxml2
|
|
BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
|
|
|
|
DEPENDS+= p5-IPC-Run-[0-9]*:../../devel/p5-IPC-Run
|
|
|
|
USE_LANGUAGES= c99
|
|
|
|
REPLACE_PERL+= chronic
|
|
REPLACE_PERL+= combine
|
|
REPLACE_PERL+= ts
|
|
REPLACE_PERL+= vidir
|
|
REPLACE_PERL+= vipe
|
|
REPLACE_PERL+= zrun
|
|
|
|
LDFLAGS.SunOS+= -lsocket -lnsl
|
|
|
|
MAKE_ENV+= \
|
|
PREFIX=${PREFIX} \
|
|
MANDIR=${PREFIX}/${PKGMANDIR} \
|
|
CFLAGS=${CFLAGS:Q} \
|
|
LDFLAGS=${LDFLAGS:Q} \
|
|
DOCBOOKXSL=${PREFIX}/share/xsl/docbook \
|
|
INSTALL_BIN=${INSTALL_PROGRAM:Q} \
|
|
INSTALL_MAN=${INSTALL_MAN:Q} \
|
|
INSTALL_SCRIPT=${INSTALL_SCRIPT:Q}
|
|
|
|
# Avoid possible conflicts with `parallel' of parallel/parallel
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/parallel \
|
|
${DESTDIR}${PREFIX}/bin/moreutils-parallel
|
|
${MV} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/parallel.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/moreutils-parallel.1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|