freebsd-ports/graphics/ocre/Makefile
Koop Mast 289883b11b Update ImageMagick to 6.9.10.14 [1]
* Add PKGNAMESUFFIX and rename the directory. This was done to show
  that IM6 is not the "main" version. But still fully supported by upstream.
* Convert a number of options to optionhelpers.
* Add option for ISO/IEC 23008-12:2017 HEIF suport
* Add comment to pkg-descr explaining IM6's "legacy" tag.
* Add comment to the patch-config_policy.xml file why it still needed.

Please note that IM7 is not a drop in replacement due to library API and
command arguments changes. And as a result ports need to decide for themself
which version to use.

Chase these changes in all the ports that using IM6.

PR:		225102 (based on, only the version update) [1]
Submitted by:	Pascal Christen <pascal.christen@hostpoint.ch>
2018-11-10 19:57:07 +00:00

52 lines
1.7 KiB
Makefile

# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
# $FreeBSD$
PORTNAME= ocre
PORTVERSION= 0.043
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= ftp://lem.eui.upm.es/pub/ocre/
DISTNAME= ${PORTNAME}_v${PORTVERSION:S/./_/}
MAINTAINER= w.schwarzenfeld@utanet.at
COMMENT= Simple optical character recognition solution
LICENSE= GPLv3
LIB_DEPENDS= libaspell.so:textproc/aspell
RUN_DEPENDS= display:graphics/ImageMagick6 \
gnuplot:math/gnuplot \
ispell:textproc/aspell-ispell
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME}
USE_GNOME= gtk20
USES= gettext gmake pkgconfig tar:tgz
MAKE_ARGS= CC="${CC}" CFLAGS1="${CFLAGS}"
post-extract:
@cd ${WRKSRC} && ${TAR} --exclude "*.orig" -xof ocre-decsWood-${PORTVERSION}.tgz
post-patch:
@${REINPLACE_CMD} -e 's|, sys_nerr||' ${WRKSRC}/src/errors.c
@${FIND} ${WRKSRC} -name "*.[1ch]" -print0 | ${XARGS} -0 \
${REINPLACE_CMD} -e \
's|/usr/bin|${PREFIX}/bin|g ; \
s|/usr/share/locale|${PREFIX}/share/locale|g ; \
s|/usr/share/ocre|${DATADIR}|g'
do-configure:
@${ECHO_CMD} -n > ${WRKSRC}/ddepend
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
@${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/es/man1
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}-es.1 ${STAGEDIR}${MAN1PREFIX}/man/es/man1/${PORTNAME}.1
${INSTALL_DATA} ${WRKSRC}/po/es.mo ${STAGEDIR}${PREFIX}/share/locale/es/LC_MESSAGES/${PORTNAME}.mo
@${MKDIR} ${STAGEDIR}${DATADIR}
.for dir in conv decsWood decsWoodCur decsWoodCyrillic decsWoodLatin decsWoodLatinW
@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DATADIR})
.endfor
.include <bsd.port.mk>