Path to this page:
NOTICE: This package has been removed from pkgsrc./
wip/jp2a,
JPEG to ASCII converter
Branch: CURRENT,
Version: 1.0.6nb4,
Package name: jp2a-1.0.6nb4,
Maintainer: esgjp2a is a small utility that converts JPG images to ASCII. It's
written in C and released under the GPL.
Required to run:[
graphics/jpeg]
Required to build:[
pkgtools/cwrappers]
Package options: curses
Master sites:
SHA1: 8d08a7f9428632c02351452067828af215afe2cf
RMD160: 203b87a74f6c411c2ac3c21bafb37978aab6bcfb
Filesize: 359.473 KB
Version history: (Expand)
- (2019-12-17) Package deleted from pkgsrc
- (2019-12-15) Package has been reborn
- (2019-12-14) Package deleted from pkgsrc
- (2019-06-25) Package has been reborn
- (2019-06-11) Package deleted from pkgsrc
- (2018-09-10) Package has been reborn
CVS history: (Expand)
2012-10-01 23:43:20 by Aleksej Saushev | Files touched by this commit (31) |
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-01-17 11:48:03 by Emil Sköldberg | Files touched by this commit (17) |
Log message:
Update maintainer email address to valid address.
|
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-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).
|
2010-01-17 13:03:22 by Thomas Klausner | Files touched by this commit (217) |  |
Log message:
Recursive PKGREVISION bump for jpeg update to 8.
|
2009-03-09 13:06:09 by Emil Sköldberg | Files touched by this commit (1) |
Log message:
Add user-destdir support.
|
2008-01-18 05:30:10 by Tobias Nygren | Files touched by this commit (174) |
Log message:
Per the process outlined in revbump(1), perform a recursive revbump
on packages that are affected by the switch from the openssl 0.9.7
branch to the 0.9.8 branch. ok jlam@
|
2007-11-29 17:42:12 by Emil Sköldberg | Files touched by this commit (1) |
Log message:
Add PKG_OPTIONS. Supported options curses and curl; curses being default.
Also now include curses.buildlink3.mk when appropriate.
|