diff options
author | maya <maya@pkgsrc.org> | 2017-10-07 22:30:38 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2017-10-07 22:30:38 +0000 |
commit | d65cc4cc3e770179506bcbf8ef8a08f23e5f4f19 (patch) | |
tree | 2b4a34b53b3c9a28aad638bda6bcd409323e592e | |
parent | a3dc843eb16648ccd15ccbecad62b82235cf5439 (diff) | |
download | pkgsrc-d65cc4cc3e770179506bcbf8ef8a08f23e5f4f19.tar.gz |
vice: avoid PLIST mismatch if texi2dvi or pdftex are available.
Reported by Rhialto in pkgsrc-users.
-rw-r--r-- | emulators/vice/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index f0b1cb6fbd7..d85d656dc8d 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.125 2017/08/16 17:54:09 adam Exp $ +# $NetBSD: Makefile,v 1.126 2017/10/07 22:30:38 maya Exp $ DISTNAME= vice-3.1 CATEGORIES= emulators @@ -25,6 +25,10 @@ CONFIGURE_ARGS+= --enable-ethernet CONFIGURE_ARGS+= --enable-fullscreen CONFIGURE_ARGS.NetBSD+= --without-oss +# Avoid PLIST mismatch if these programs are installed +CONFIGURE_ENV+= ac_cv_prog_TEXI2DVI=no +CONFIGURE_ENV+= ac_cv_prog_PDFTEX=no + INFO_FILES= yes FONTS_DIRS.x11= ${PREFIX}/share/vice/fonts REQD_DIRS+= ${PREFIX}/share/vice/fonts |