Commit graph

16 commits

Author SHA1 Message Date
David Sainty
e2d791ed0f 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
2010-12-26 05:01:21 +00:00
Thomas Klausner
41f92d5420 Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:46:54 +00:00
Thomas Klausner
8800f9c18c Second try at recursive PKGREVISION bump for jpeg shlib major bump (jpeg-8). 2010-01-18 09:38:16 +00:00
Thomas Klausner
4c850f93bc Remove obsolete @dirrm lines. 2009-10-11 10:44:24 +00:00
Olaf Seibert
fe2cb7d69e Implement hints from lintpkgsrc. 2008-07-01 15:10:21 +00:00
Olaf Seibert
d4535ffcd5 Non-maintainer update to version 2.6.8. 2008-07-01 13:36:37 +00:00
Thomas Klausner
72f5c3ea90 Bump PKGREVISION and BUILDLINK_ABI_DEPENDS (where applicable)
for SDL shlib changes.
2006-06-12 16:28:54 +00:00
Thomas Klausner
aafb65a014 Centralize package update notes for pkgsrc-wip packages.
pkglint support might be coming soon...

rillig@ ok
2006-05-18 19:36:29 +00:00
Roland Illig
1ee539a984 Added RMD160 checksums. 2005-09-28 06:41:05 +00:00
Thomas Klausner
f984ee1683 2.6.3 is out. 2005-07-25 09:34:55 +00:00
Thomas Klausner
2673d4438e 2.6 is out. 2005-05-18 14:07:04 +00:00
Todd Vierling
5f60a41bb5 Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used. 2005-04-11 21:09:34 +00:00
David Yeske
b20169bc99 +DEPENDS+= curl>=7.12.1:../../www/curl
-USE_PKGINSTALL=		YES
-.include "../../mk/bsd.prefs.mk"
2005-01-08 07:20:31 +00:00
David Yeske
1dacbcd018 make changes suggested by pkglint 2004-12-29 08:23:20 +00:00
David Yeske
6a3ee5981e fix xli depend 2004-12-28 21:58:29 +00:00
David Yeske
d425631c43 This is my first pkgsrc.
This is not finished but close to it.
This works on amd64 on HEAD in NetBSD
This has a run depend on xli, how do I do that?
2004-12-26 08:25:52 +00:00