NOTICE: This package has been removed from pkgsrc

./wip/gpicview, Lightweight image viewer

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 0.1.11nb3, Package name: gpicview-0.1.11nb3, Maintainer: zecrazytux

Extremely lightweight and fast with low memory usage X image viewer.
It is part of LXDE.


Required to run:
[sysutils/desktop-file-utils] [graphics/jpeg] [x11/gtk2]

Required to build:
[pkgtools/x11-links] [devel/gmake] [devel/pkg-config] [x11/compositeproto] [x11/renderproto] [x11/xproto] [x11/inputproto] [x11/xextproto] [x11/randrproto] [x11/xcb-proto] [x11/fixesproto4]

Master sites:

SHA1: c46a97c31a84e129944a08f0e2f702e1a897285b
RMD160: c94b5be889f659b32c9e0783344f1cbbc8b5c385
Filesize: 385.26 KB

Version history: (Expand)


CVS history: (Expand)


   2011-11-01 17:47:17 by Ryo ONODERA | Files touched by this commit (4) | Package removed
Log message:
Import to pkgsrc as graphics/gpicview
   2011-11-01 17:22:27 by Ryo ONODERA | Files touched by this commit (3)
Log message:
Update to 0.2.2

Changelog unknown (it seems NEWS and Changelog are not modified.)
   2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78)
Log message:
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-06-14 00:46:55 by Thomas Klausner | Files touched by this commit (271)
Log message:
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-01-18 10:38:16 by Thomas Klausner | Files touched by this commit (204)
Log message:
Second try at recursive PKGREVISION bump for jpeg shlib major bump (jpeg-8).
   2009-10-11 13:18:12 by Thomas Klausner | Files touched by this commit (112)
Log message:
Remove unnecessary @comment lines.
Spill a few more @pkgdir.
   2009-10-11 12:44:40 by Thomas Klausner | Files touched by this commit (286)
Log message:
Remove obsolete @dirrm lines.
   2009-07-22 11:53:10 by Thomas Klausner | Files touched by this commit (92)
Log message:
Remove USE_DIRS from pkgsrc.

Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.

Packages needing empty directories can use the @pkgdir command in PLIST.

Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html