The NetBSD Project

CVS log for pkgsrc/print/ghostscript/options.mk

[BACK] Up to [cvs.netbsd.org] / pkgsrc / print / ghostscript

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.11 / (download) - annotate - [select for diffs], Thu Dec 23 11:44:54 2010 UTC (17 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, HEAD
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done

Revision 1.10 / (download) - annotate - [select for diffs], Sun Nov 1 23:57:29 2009 UTC (2 years, 6 months ago) by gdt
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored)

When the cups option is enabled, bl3 in jpeg, so that a dependency
which seems to actually exist is recorded.  (When I updated jpeg from
6.2 to 7, the shlib major changed, ghostscript was not rebuilt, and it
failed to run.)

Proposed on tech-pkg on 22 October, with no objections received.

Revision 1.9 / (download) - annotate - [select for diffs], Wed Sep 2 15:56:03 2009 UTC (2 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.8: +6 -2 lines
Diff to previous 1.8 (colored)

Add debug option.

Revision 1.8 / (download) - annotate - [select for diffs], Wed Sep 3 21:31:12 2008 UTC (3 years, 8 months ago) by markd
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Changes since 1.7: +2 -1 lines
Diff to previous 1.7 (colored)

Build libgs as a shared library as increasingly other packages expect it
to be there and want to link with it. Bump PKGREVISION.

Revision 1.7 / (download) - annotate - [select for diffs], Sat Apr 12 22:43:09 2008 UTC (4 years, 1 month ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

Convert to use PLIST_VARS instead of manually passing "@comment "
through PLIST_SUBST to the plist module.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Jan 24 15:17:30 2008 UTC (4 years, 4 months ago) by gdt
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

Update the way the cups makefile is modified to place the prototype
psraster.convs in share/examples/cups (to avoid writing PKG_SYSCONFDIR
outside of CONF_FILES).

Revision 1.5 / (download) - annotate - [select for diffs], Thu Jan 10 15:23:27 2008 UTC (4 years, 4 months ago) by drochner
Branch: MAIN
Changes since 1.4: +9 -3 lines
Diff to previous 1.4 (colored)

-make fontconfig an option, on per default (as is x11)
-add pkg-config to TOOLS (used to locate fontconfig)

Revision 1.4 / (download) - annotate - [select for diffs], Mon Oct 22 12:35:32 2007 UTC (4 years, 7 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

Quell a pkglint -Wall warning, use CONF_FILES+= instead of =

Revision 1.3 / (download) - annotate - [select for diffs], Mon Oct 22 12:15:04 2007 UTC (4 years, 7 months ago) by dsainty
Branch: MAIN
Changes since 1.2: +23 -3 lines
Diff to previous 1.2 (colored)

Pull over the "cups" option, based largely on the implementation of the "cups"
option in ghostscript-esp, although there it was on by default.

Here it is off by default, which is more in keeping with how the "cups" option
is generally used - it is usually off by default, and a CUPS user would
usually add "cups" to the global options.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Dec 27 18:18:22 2006 UTC (5 years, 4 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4
Changes since 1.1: +6 -7 lines
Diff to previous 1.1 (colored)

Update to gpl ghostscript-8.54 aka print/ghostscript-afpl relaunched
under GPL with options.mk. This was discussed on tech-pkg@.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Dec 9 20:30:16 2005 UTC (6 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2, pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4

Add x11 option to the various ghostscript packages, and get rid
of the separate ghostscript*x11* packages.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>