diff options
author | dinoex <dinoex@FreeBSD.org> | 2010-12-16 02:49:17 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2010-12-16 02:49:17 +0800 |
commit | 0fcf374e6f473d46d5157770ad70ebf17990af83 (patch) | |
tree | 552837bb6d3cd1a248b82918abf7451518ec162d /print | |
parent | 835dd720facc96bb956c5167b27cf4701c21becd (diff) | |
download | freebsd-ports-gnome-0fcf374e6f473d46d5157770ad70ebf17990af83.tar.gz freebsd-ports-gnome-0fcf374e6f473d46d5157770ad70ebf17990af83.tar.zst freebsd-ports-gnome-0fcf374e6f473d46d5157770ad70ebf17990af83.zip |
- fix build with output device X11
PR: 152610
Approved by: (maintainer timeout)
Diffstat (limited to 'print')
-rw-r--r-- | print/ghostscript8/files/Makefile.drivers_post | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/print/ghostscript8/files/Makefile.drivers_post b/print/ghostscript8/files/Makefile.drivers_post index 60811ece1ed4..34c93acb8109 100644 --- a/print/ghostscript8/files/Makefile.drivers_post +++ b/print/ghostscript8/files/Makefile.drivers_post @@ -64,6 +64,9 @@ CUPS_DEVS= cups .undef WITH_GS_${D} .elif defined(WITH_GS_${D}) _CUPS_DEVS+= ${D} +.elif ${OPTIONS_CUPS_DEFAULT} == "on" +_CUPS_DEVS+= ${D} +WITH_GS_${D}=yes .endif .endfor @@ -83,6 +86,9 @@ VGA_DEVS= lvga256 vgalib .undef WITH_GS_${D} .elif defined(WITH_GS_${D}) _VGA_DEVS+= ${D} +.elif ${OPTIONS_SVGALIB_DEFAULT} == "on" +_VGA_DEVS+= ${D} +WITH_GS_${D}=yes .endif .endfor @@ -100,6 +106,9 @@ X11_DEVS= x11 x11alpha x11cmyk x11cmyk2 x11cmyk4 x11cmyk8 x11gray2 \ . undef WITH_GS_${D} .elif defined(WITH_GS_${D}) _X11_DEVS+= ${D} +.elif ${OPTIONS_X11_DEFAULT} == "on" +_X11_DEVS+= ${D} +WITH_GS_${D}=yes .endif .endfor @@ -130,6 +139,9 @@ ICONV_DEVS= oprp opvp .undef WITH_GS_${D} .elif defined(WITH_GS_${D}) _ICONV_DEVS+= ${D} +.elif ${OPTIONS_ICONV_DEFAULT} == "on" +_ICONV_DEVS+= ${D} +WITH_GS_${D}=yes .endif .endfor |