freebsd-ports/graphics/azpainter/Makefile
Alexey Dokuchaev c67632ef49 - Update AzPainter to version 2.1.7, rebase the patches against it
- Drop `post-patch-NLS-off' target, it's not really needed: we simply do
  not grab translation files from the staging area in the NLS-less case
2021-01-09 15:15:50 +00:00

39 lines
943 B
Makefile

# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= azpainter
PORTVERSION= 2.1.7
CATEGORIES= graphics
MASTER_SITES= http://azsky2.html.xdomain.jp/arc/
MAINTAINER= danfe@FreeBSD.org
COMMENT= 16-bit RGB full color painting application
LICENSE= GPLv3
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libpng.so:graphics/png
USES= compiler:c11 desktop-file-utils gmake jpeg pkgconfig \
shared-mime-info tar:xz xorg
USE_XORG= x11 xext xi
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --docdir="${DOCSDIR}" CC="${CC}"
PORTDOCS= AUTHORS ChangeLog ReadMe_en ReadMe_ja manual_ja.html
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --debug
.endif
pre-build-NLS-on:
cd ${WRKSRC}/translation && ${CC} ${CFLAGS} -o mtrconv mtrconv.c
.for lang in en ru uk
cd ${WRKSRC}/translation && ./mtrconv ${lang} ../data/tr/${lang}.mtr
.endfor
.include <bsd.port.mk>