diff options
author | tron <tron@pkgsrc.org> | 2003-06-17 17:40:38 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2003-06-17 17:40:38 +0000 |
commit | 5fab46e4aa44933fd4906795a5b4153d33b33bd3 (patch) | |
tree | 2d58c7daa013d77fa63d4bd428481b3d79950855 /print | |
parent | b0e5e7d33a7e31f006d2fee1cc9c8754abb28fc1 (diff) | |
download | pkgsrc-5fab46e4aa44933fd4906795a5b4153d33b33bd3.tar.gz |
Conflict with "coreutils" package if "GNU_PROGRAM_PREFIX" is "".
Diffstat (limited to 'print')
-rw-r--r-- | print/teTeX2-bin/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/print/teTeX2-bin/Makefile b/print/teTeX2-bin/Makefile index ec5a3ec9e6b..ceae13e0762 100644 --- a/print/teTeX2-bin/Makefile +++ b/print/teTeX2-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2003/04/11 21:35:48 jschauma Exp $ +# $NetBSD: Makefile,v 1.5 2003/06/17 17:40:38 tron Exp $ DISTNAME= tetex-src-${TETEX_BIN_VERS} PKGNAME= teTeX2-bin-${TETEX_BIN_VERS} @@ -18,6 +18,13 @@ CONFLICTS+= omega-[0-9]* INFO_FILES= latex.info dvips.info web2c.info kpathsea.info +.include "../../mk/bsd.prefs.mk" +# sysutils/coreutils installs a 'readlink' program, so conflict with it if +# GNU_PROGRAM_PREFIX == '' +.if ${GNU_PROGRAM_PREFIX} == "" +CONFLICTS+= coreutils-[0-9]* +.endif + post-install: @${RM} ${PREFIX}/share/texmf/web2c/*.log .if defined(PAPERSIZE) |