NetBSD.se

CVS log for wip/electricsheep-svn/Makefile

[BACK] Up to [NetBSD + pkgsrc-wip] / wip / electricsheep-svn

Request diff between arbitrary revisions - Display revisions graphically


Keyword substitution: kv
Default branch: MAIN


Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Dec 26 05:01:21 2010 UTC (16 months, 4 weeks ago) by davesainty
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
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.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sun Jan 31 17:27:49 2010 UTC (2 years, 3 months ago) by rhialto
Branches: RHIALTO
CVS tags: RHIALTO_20100131
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Import electricsheep-2.7nb20100131 as wip/electricsheep-svn.

Electricsheep is a distributed screensaver.  It realizes the
collective dream of sleeping computers from all over the internet.
When the screen-saver is activated, the screen goes black and an
animated 'sheep' appears.  Behind the scenes, the screen-saver
contacts an internet server and joins the parallel computation of
new sheep.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Jan 31 17:27:49 2010 UTC (2 years, 3 months ago) by rhialto
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs 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.

Log view options

NetBSD-CVSweb <admin[at]NetBSD[dot]se>