1e691e06ff
------------------------------ What's new in libsixel-1.3 ? ------------------------------ * Now libcurl is automatically linked to img2sixel. If you don't want to build with libcurl, you should configure with --without-libcurl option. * Add libjpeg integration(linked automatically to img2sixel). * Add libpng integration(linked automatically to img2sixel/sixel2png). * Introduce -t(--palette-type) option. img2sixel can output HLS paletted sixel with "-t hls". Add new API sixel_output_set_palette_type. * Introduce -v(--verbose) option. * Add new API sixel_dither_set_body_only. * Now img2sixel can load SIXEL as input data. * Some bug fixes and minor improvements. ------------------------------ What's new in libsixel-1.2 ? ------------------------------ * Introduce GNU Screen penetration (-P) feature written by @arakiken. This works with arakiken's GNU screen sixel branch (screen-sixel, https://bitbucket.org/arakiken/screen/branch/screen). * Introduce crop operation (-c) feature written by @arakiken. This works with arakiken's w3m remoteimg branch https://bitbucket.org/arakiken/w3m/branch/remoteimg (w3m with "-sixel" option) * Introduce -C (complexion score) option and implement complexion correction feature. (discussion with @tsutsui) * Introduce static image extraction from Gif animation (-S). (discussion with @isaki68k) * Introduce --enable-debug configure option. * Add APIs for skipping DCS envelope sixel_output_{get,set}_skip_dcs_envelope. (disscussion with @uobikiemukot) * Some bug fixes and minor improvements. Thanks to @elfring, @isaki68k, @knok, @mattn, @tsutsui, @waywardmonkeys and @ttdoda.
42 lines
992 B
Makefile
42 lines
992 B
Makefile
# $NetBSD: options.mk,v 1.2 2014/11/09 07:19:54 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.libsixel
|
|
PKG_SUPPORTED_OPTIONS= curl gd gdk-pixbuf2 jpeg png
|
|
PKG_SUGGESTED_OPTIONS= curl jpeg png
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mcurl)
|
|
CONFIGURE_ARGS+= --with-libcurl
|
|
.include "../../www/curl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-libcurl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mjpeg)
|
|
CONFIGURE_ARGS+= --with-jpeg
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-jpeg
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpng)
|
|
CONFIGURE_ARGS+= --with-png
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-png
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgd)
|
|
CONFIGURE_ARGS+= --with-gd
|
|
.include "../../graphics/gd/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gd
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgdk-pixbuf2)
|
|
CONFIGURE_ARGS+= --with-gdk-pixbuf2
|
|
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gdk-pixbuf2
|
|
.endif
|