mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
c5d9453986
- Mark DEPRECATED and set EXPIRATION_DATE to 2014-06-20 - Move OPTIONS_DEFINE downwards - Pass maintainership to submitter PR: ports/189333 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
78 lines
2.6 KiB
Makefile
78 lines
2.6 KiB
Makefile
# Created by: Shaun Amott <shaun@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= FuzzyOcr
|
|
DISTVERSION= 2.3b
|
|
PORTREVISION= 9
|
|
PORTEPOCH= 1
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= http://users.own-hero.net/~decoder/${PORTNAME:tl}/
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ${PORTNAME:tl}-${DISTVERSION}
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= Plugin for SpamAssassin which scans image attachments for spam
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm \
|
|
import:${PORTSDIR}/graphics/ImageMagick \
|
|
gocr:${PORTSDIR}/graphics/gocr \
|
|
gifasm:${PORTSDIR}/graphics/giflib \
|
|
spamassassin:${PORTSDIR}/mail/spamassassin \
|
|
p5-String-Approx>=0:${PORTSDIR}/devel/p5-String-Approx
|
|
|
|
CONFLICTS= p5-FuzzyOcr-devel-[0-9]*
|
|
|
|
DEPRECATED= Unmaintained upstream, no ports depending on it. Use mail/p5-FuzzyOcr-devel instead
|
|
EXPIRATION_DATE=2014-06-20
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
USES= perl5
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
|
|
|
|
PORTEXAMPLES= *
|
|
PORTDOCS= FAQ samples
|
|
PORTDOCS_F= FAQ samples/README samples/animated-gif.eml \
|
|
samples/corrupted-gif.eml samples/jpeg.eml samples/png.eml
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
#-----------------------------------------------------------------------
|
|
# The plugin is installed twice: once where it should go, and once where
|
|
# it actually works from. This will hopefully be fixed at some point.
|
|
#-----------------------------------------------------------------------
|
|
|
|
SA_PLUGINDIR?= Mail/SpamAssassin/Plugin
|
|
SA_CONFIGDIR?= etc/mail/spamassassin
|
|
|
|
PLIST_FILES= ${SA_CONFIGDIR}/FuzzyOcr.pm \
|
|
%%SITE_PERL%%/${SA_PLUGINDIR}/FuzzyOcr.pm \
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,/usr/bin,${LOCALBASE}/bin,g' \
|
|
-e 's,/bin/grep,/usr/bin/grep,g' \
|
|
-e 's,/etc/mail,${LOCALBASE}/etc/mail,g' \
|
|
${WRKSRC}/FuzzyOcr.??
|
|
@${REINPLACE_CMD} -e 's,package FuzzyOcr;,package Mail::SpamAssassin::Plugin::FuzzyOcr;,' \
|
|
${WRKSRC}/FuzzyOcr.pm
|
|
@${REINPLACE_CMD} -e 's,loadplugin FuzzyOcr FuzzyOcr\.pm,loadplugin Mail::SpamAssassin::Plugin::FuzzyOcr,' \
|
|
${WRKSRC}/FuzzyOcr.cf
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${STAGEDIR}${SITE_PERL}/${SA_PLUGINDIR} \
|
|
${STAGEDIR}${PREFIX}/${SA_CONFIGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/FuzzyOcr.pm ${STAGEDIR}${SITE_PERL}/${SA_PLUGINDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/FuzzyOcr.pm ${STAGEDIR}${PREFIX}/${SA_CONFIGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/FuzzyOcr.cf ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/FuzzyOcr.words.sample ${STAGEDIR}${EXAMPLESDIR}/FuzzyOcr.words
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/samples
|
|
.for f in ${PORTDOCS_F}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|