./wip/fbida, Image viewer and editor

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.09nb1, Package name: fbida-2.09nb1, Maintainer: pkgsrc-users

Ida is a small and fast image viewer, motif-based. For people who
don't want the KDE/GNOME overhead. Some basic editing functions are
available too.

The package also includes exiftran, similar to jpegtran.


Required to run:
[www/curl] [graphics/libexif] [graphics/tiff] [graphics/png] [graphics/jpeg] [graphics/giflib] [x11/motif]

Required to build:
[pkgtools/x11-links] [x11/xbitmaps] [pkgtools/cwrappers] [x11/xorgproto]

Master sites:

RMD160: bbc237471d77505a628e67e4152dca80de51301b
Filesize: 242.271 KB

Version history: (Expand)


CVS history: (Expand)


   2014-05-31 17:57:19 by Thomas Klausner | Files touched by this commit (18)
Log message:
Stop using mk/giflib, use giflib/bl3.mk directly.
   2013-04-04 20:10:05 by Olaf Seibert | Files touched by this commit (2)
Log message:
Updated to latest version (2.09). Added workaround for missing files
from distribution which are supposed to be copies from jpeg-9.
   2012-12-25 19:19:27 by ndb | Files touched by this commit (2)
Log message:
motif.
   2012-09-29 01:21:47 by Aleksej Saushev | Files touched by this commit (64)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
   2011-10-20 14:27:27 by Olaf Seibert | Files touched by this commit (1)
Log message:
Adjust homepage and master site.
   2011-10-20 14:20:55 by Olaf Seibert | Files touched by this commit (4)
Log message:
Update to 2.08. Add user-destdir support.
   2011-05-26 22:34:25 by Thomas Klausner | Files touched by this commit (6)
Log message:
Use giflib.buildlink3.mk instead of libungif/buildlink3.mk.
   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