diff options
author | edwin <edwin@FreeBSD.org> | 2008-07-05 19:33:06 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2008-07-05 19:33:06 +0800 |
commit | bd0f68c9bf2d1a16920f59050b5eec205286edde (patch) | |
tree | b856fd5805b4859159ea952e342ac7200866f594 /sysutils | |
parent | dfe90d0ed439e05e7e873a930b4f6d3fce1c8415 (diff) | |
download | freebsd-ports-gnome-bd0f68c9bf2d1a16920f59050b5eec205286edde.tar.gz freebsd-ports-gnome-bd0f68c9bf2d1a16920f59050b5eec205286edde.tar.zst freebsd-ports-gnome-bd0f68c9bf2d1a16920f59050b5eec205286edde.zip |
Minor enhancement to sysutils/coreutils
Cleanup conflicts in this port (fileutils, sh-utils and
textutils don't exist anymore)
Provide a regression-test target to determine the convenience
of updating this port. Add commented USE_BISON line as it
is recommended but not required, maybe future versions will
need it.
Update the WWW.
No functional change.
PR: ports/124623
Submitted by: "Pedro F. Giffuni" <pfgshield-freebsd@yahoo.com>
Approved by: maintainer timeout
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/coreutils/Makefile | 8 | ||||
-rw-r--r-- | sysutils/coreutils/pkg-descr | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sysutils/coreutils/Makefile b/sysutils/coreutils/Makefile index 10948b24df8b..9f1f768023a9 100644 --- a/sysutils/coreutils/Makefile +++ b/sysutils/coreutils/Makefile @@ -15,10 +15,8 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= jharris@widomaker.com COMMENT= The Free Software Foundation's core utilities -CONFLICTS= fileutils-[0-9]* id-utils-[0-9]* linux-gid-[0-9]* \ - sh-utils-[0-9]* textutils-[0-9]* +CONFLICTS= id-utils-[0-9]* linux-gid-[0-9]* -USE_GCC= 3.4+ USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -26,6 +24,7 @@ CONFIGURE_ARGS= --program-prefix=g CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" USE_GMAKE= yes +#USE_BISON= yes .if defined(WITHOUT_NLS) CONFIGURE_ARGS+=--disable-nls @@ -60,6 +59,7 @@ post-patch: post-build: @${REINPLACE_CMD} -e "s/ lib / /g" ${WRKSRC}/Makefile -post-install: +regression-test: build + (cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} check) .include <bsd.port.mk> diff --git a/sysutils/coreutils/pkg-descr b/sysutils/coreutils/pkg-descr index b6f958f97c4f..c7f78f9e4e81 100644 --- a/sysutils/coreutils/pkg-descr +++ b/sysutils/coreutils/pkg-descr @@ -20,4 +20,4 @@ will refer to them without the `g' prefix. GNU su does not support a wheel group. This port installs it without the suid bit, unless you define WITH_SUID while building. -WWW: http://www.gnu.org/directory/coreutils.html +WWW: http://www.gnu.org/software/coreutils/ |