internal replacement function. Following the changes to make realpath(3) use the __realpath() syscall these no longer detect broken realpath i.e. produce different code. Bump REVISION to ensure that users get the new version.
39 lines
940 B
Makefile
39 lines
940 B
Makefile
# $OpenBSD: Makefile,v 1.19 2019/07/16 21:29:41 sthen Exp $
|
|
|
|
COMMENT = file, shell and text manipulation utilities
|
|
|
|
DISTNAME = coreutils-8.31
|
|
CATEGORIES = sysutils
|
|
REVISION = 1
|
|
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
HOMEPAGE = https://www.gnu.org/software/coreutils/coreutils.html
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = c iconv intl pthread
|
|
|
|
MASTER_SITES = ${MASTER_SITE_GNU:=coreutils/}
|
|
EXTRACT_SUFX = .tar.xz
|
|
|
|
LIB_DEPENDS = devel/gettext,-runtime
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --program-prefix=g \
|
|
--without-gmp
|
|
|
|
# Prevent conflicts with: id, gpr and god
|
|
post-install:
|
|
.for I in gid god gpr
|
|
mv "${PREFIX}/bin/$I" "${PREFIX}/bin/g$I"
|
|
mv "${PREFIX}/man/man1/$I.1" "${PREFIX}/man/man1/g$I.1"
|
|
.endfor
|
|
if test -f "${PREFIX}/libexec/coreutils/glibstdbuf.so"; then \
|
|
mv "${PREFIX}/libexec/coreutils/glibstdbuf.so" \
|
|
"${PREFIX}/libexec/coreutils/libstdbuf.so"; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|