216615557c
The GNU Core Utilities are the basic file, shell and text manipulation utilities of the GNU operating system. Previously these utilities were offered as three individual sets of GNU utilities, Fileutils, Shellutils, and Textutils. Those three have been combined into a single set of utilities called Coreutils. From: Antti Harri
35 lines
762 B
Makefile
35 lines
762 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/03/20 16:34:07 naddy Exp $
|
|
|
|
COMMENT = file, shell and text manipulation utilities
|
|
DISTNAME = coreutils-8.15
|
|
|
|
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>
|