The NetBSD Project

CVS log for pkgsrc/comms/xtel/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / comms / xtel

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: pkgsrc-2011Q3


Revision 1.21.8.1 / (download) - annotate - [select for diffs], Sun Oct 9 13:26:47 2011 UTC (12 years, 6 months ago) by tron
Branch: pkgsrc-2011Q3
Changes since 1.21: +17 -4 lines
Diff to previous 1.21 (colored) next main 1.22 (colored)

Pullup ticket #3543 - requested by dholland
comms/xtel: build fix

Revisions pulled up:
- comms/xtel/Makefile                                           1.22-1.24
- comms/xtel/distinfo                                           1.7
- comms/xtel/patches/patch-aa                                   deleted
- comms/xtel/patches/patch-ac                                   deleted
- comms/xtel/patches/patch-ad                                   deleted
- comms/xtel/patches/patch-ae                                   1.3
- comms/xtel/patches/patch-af                                   deleted
- comms/xtel/patches/patch-ag                                   deleted
- comms/xtel/patches/patch-ah                                   deleted

---
   Module Name:	pkgsrc
   Committed By:	dholland
   Date:		Sat Oct  8 07:04:34 UTC 2011

   Modified Files:
   	pkgsrc/comms/xtel: Makefile

   Log Message:
   Not MAKE_JOBS_SAFE

---
   Module Name:	pkgsrc
   Committed By:	dholland
   Date:		Sun Oct  9 03:35:27 UTC 2011

   Modified Files:
   	pkgsrc/comms/xtel: Makefile distinfo
   	pkgsrc/comms/xtel/patches: patch-ae
   Removed Files:
   	pkgsrc/comms/xtel/patches: patch-aa patch-ac patch-ad patch-af patch-ag
   	    patch-ah

   Log Message:
   Add a monster cleanup patch, posted as a distfile, to fix rampant
   misuse of function pointer casts and mismatched function calls and
   arguments. Now this has some chance at running on something other
   than i386.

   PKGREVISION -> 12.

---
   Module Name:	pkgsrc
   Committed By:	dholland
   Date:		Sun Oct  9 03:53:32 UTC 2011

   Modified Files:
   	pkgsrc/comms/xtel: Makefile

   Log Message:
   Fix native X build by cleaning up FONTDIR after imake. Ride previous bump.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Dec 23 11:44:26 2010 UTC (13 years, 3 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4
Branch point for: pkgsrc-2011Q3
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (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

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>