Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

8
graphics/libsixel/DESCR Normal file
View File

@@ -0,0 +1,8 @@
This package provides encoder/decoder implementation for DEC SIXEL graphics, and
some converter programs.
SIXEL is one of image formats for printer and terminal imaging introduced by
Digital Equipment Corp. (DEC).
Its data scheme is represented as a terminal-friendly escape sequence.
So if you want to view a SIXEL image file, all you have to do is "cat" it to
your terminal.

View File

@@ -0,0 +1,22 @@
# $NetBSD: Makefile,v 1.18 2015/03/13 15:51:49 ryoon Exp $
DISTNAME= libsixel-1.4.10
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=saitoha/}
GITHUB_PROJECT= libsixel
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://saitoha.github.io/libsixel/
COMMENT= DEC SIXEL graphics codec encoder/decoder and converter
LICENSE= mit AND public-domain
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= pkg-config
PKGCONFIG_OVERRIDE+= libsixel.pc.in
.include "options.mk"
.include "../../mk/bsd.pkg.mk"

11
graphics/libsixel/PLIST Normal file
View File

@@ -0,0 +1,11 @@
@comment $NetBSD: PLIST,v 1.1 2014/07/13 10:10:56 obache Exp $
bin/img2sixel
bin/sixel2png
include/sixel.h
lib/libsixel.la
lib/pkgconfig/libsixel.pc
man/man1/img2sixel.1
man/man1/sixel2png.1
man/man5/sixel.5
share/bash-completion/completions/img2sixel
share/zsh/site-functions/_img2sixel

View File

@@ -0,0 +1,14 @@
# $NetBSD: buildlink3.mk,v 1.2 2014/08/22 10:25:09 obache Exp $
#
BUILDLINK_TREE+= libsixel
.if !defined(LIBSIXEL_BUILDLINK3_MK)
LIBSIXEL_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libsixel+= libsixel>=0.11.0
BUILDLINK_ABI_DEPENDS.libsixel+= libsixel>=1.0.0
BUILDLINK_PKGSRCDIR.libsixel?= ../../graphics/libsixel
.endif # LIBSIXEL_BUILDLINK3_MK
BUILDLINK_TREE+= -libsixel

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.15 2015/03/13 15:51:49 ryoon Exp $
SHA1 (libsixel-1.4.10.tar.gz) = 644d354f55dcc80ffc44f9f4a1386d97e2cdca47
RMD160 (libsixel-1.4.10.tar.gz) = 7ceb372df2be2aef93329de17d3c56a8bba0269a
Size (libsixel-1.4.10.tar.gz) = 4057725 bytes

View File

@@ -0,0 +1,42 @@
# $NetBSD: options.mk,v 1.3 2014/12/03 06:36:49 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 "../../mk/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