mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
a9f64a29d7
This provides security fixes for CVE-2026-33023, CVE-2026-33018, CVE-2026-33019, CVE-2026-33020, and CVE-2026-33021.
38 lines
650 B
Makefile
38 lines
650 B
Makefile
COMMENT = encoder/decoder implementation for DEC SIXEL graphics
|
|
|
|
V = 1.8.7-r2
|
|
DISTNAME = sixel-$V
|
|
PKGNAME = libsixel-1.8.7pl2
|
|
|
|
SHARED_LIBS += sixel 1.0 # 1.6
|
|
|
|
CATEGORIES = graphics
|
|
|
|
HOMEPAGE = https://github.com/saitoha/libsixel
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# needs thread local storage
|
|
COMPILER = base-clang ports-gcc
|
|
COMPILER_LANGS= c
|
|
|
|
WANTLIB += c jpeg m png z
|
|
|
|
SITES = https://github.com/saitoha/libsixel/releases/download/v$V/
|
|
|
|
LIB_DEPENDS = graphics/jpeg \
|
|
graphics/png
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
CONFIGURE_ARGS += --disable-python \
|
|
--without-libcurl
|
|
|
|
# Requires Python
|
|
NO_TEST = Yes
|
|
|
|
WRKDIST = ${WRKDIR}/sixel-$V
|
|
|
|
.include <bsd.port.mk>
|