diff options
author | recht <recht@pkgsrc.org> | 2004-03-07 11:32:44 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-03-07 11:32:44 +0000 |
commit | 817f2b6121d11f2087ba03ee4557e13221e0a2b9 (patch) | |
tree | 0151898890770d72731a9f5f7fdb9e7575bf3f28 /databases/geneweb | |
parent | 56faec790ed001a20c12161583779b12d7201b05 (diff) | |
download | pkgsrc-817f2b6121d11f2087ba03ee4557e13221e0a2b9.tar.gz |
Add a conflict on sysutils/coreutils if GNU_PROGRAM_PREFIX == "g".
Addresses PR 23941 by Chris Pinnock.
Diffstat (limited to 'databases/geneweb')
-rw-r--r-- | databases/geneweb/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/databases/geneweb/Makefile b/databases/geneweb/Makefile index 29fad73e0bf..389126383d9 100644 --- a/databases/geneweb/Makefile +++ b/databases/geneweb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2004/01/22 08:02:15 grant Exp $ +# $NetBSD: Makefile,v 1.16 2004/03/07 11:32:44 recht Exp $ # DISTNAME= geneweb-4.09 @@ -20,6 +20,14 @@ RCD_SCRIPTS= geneweb ALL_TARGET= out .endif +.include "../../mk/bsd.prefs.mk" + +# sysutils/coreutils a 'gwc' program, so conflict with it if +# ${GNU_PROGRAM_PREFIX} == "g" +.if ${GNU_PROGRAM_PREFIX} == "g" +CONFLICTS+= coreutils-[0-9]* +.endif + # Stripped OCAML binaries don't seem to work nolonger # Installing unstripped binaries until this is fixed INSTALL_PROGRAM = ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} |