openbsd-ports/sysutils/coreutils/Makefile
sthen 45749a881a update to coreutils 8.20; various fixes since 8.15 including
- sort -u could fail to output one or more result lines
- sort -u could read freed memory
2012-10-30 20:45:10 +00:00

35 lines
758 B
Makefile

# $OpenBSD: Makefile,v 1.2 2012/10/30 20:45:10 sthen Exp $
COMMENT = file, shell and text manipulation utilities
DISTNAME = coreutils-8.20
CATEGORIES = sysutils
HOMEPAGE = http://www.gnu.org/software/coreutils/coreutils.html
# GPLv3+
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WANTLIB = c pthread
MASTER_SITES = ${MASTER_SITE_GNU:=coreutils/}
EXTRACT_SUFX = .tar.xz
MODULES = devel/gettext
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
.include <bsd.port.mk>