mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
aae33b1c39
- Fix LICENSE_FILE - Update pkg-descr - Update WWW - Bump PORTREVISION of dependent ports for dependency change Changes: https://metacpan.org/changes/distribution/IO-Stringy
101 lines
2.9 KiB
Makefile
101 lines
2.9 KiB
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xmltv
|
|
PORTVERSION= 0.5.70
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= SF
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Set of programs to process TV (tvguide) listings in XML format
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
XMLTV_DEPENDS= \
|
|
p5-CGI>=0:www/p5-CGI \
|
|
p5-XML-Parser>=0:textproc/p5-XML-Parser \
|
|
p5-XML-Twig>=0:textproc/p5-XML-Twig \
|
|
p5-XML-Writer>=0:textproc/p5-XML-Writer \
|
|
p5-Date-Manip>=0:devel/p5-Date-Manip \
|
|
p5-PerlIO-gzip>=0:archivers/p5-PerlIO-gzip \
|
|
p5-IO-Compress>=0:archivers/p5-IO-Compress \
|
|
p5-libwww>=0:www/p5-libwww \
|
|
p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent \
|
|
p5-HTML-Tree>=0:www/p5-HTML-Tree \
|
|
p5-HTML-Parser>=0:www/p5-HTML-Parser \
|
|
p5-Tk-TableMatrix>=0:x11-toolkits/p5-Tk-TableMatrix \
|
|
ja-p5-Text-Kakasi>=0:japanese/p5-Text-Kakasi \
|
|
p5-XML-LibXML>=0:textproc/p5-XML-LibXML \
|
|
p5-SOAP-Lite>=0:net/p5-SOAP-Lite \
|
|
p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \
|
|
p5-HTML-TableExtract>=0:www/p5-HTML-TableExtract \
|
|
p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \
|
|
p5-Term-ProgressBar>=0:devel/p5-Term-ProgressBar \
|
|
p5-Lingua-Preferred>=0:textproc/p5-Lingua-Preferred \
|
|
p5-Unicode-String>=0:converters/p5-Unicode-String \
|
|
p5-Unicode-UTF8simple>=0:converters/p5-Unicode-UTF8simple \
|
|
p5-Lingua-EN-Numbers-Ordinate>=0:textproc/p5-Lingua-EN-Numbers-Ordinate \
|
|
p5-Archive-Zip>=0:archivers/p5-Archive-Zip \
|
|
p5-HTTP-Cache-Transparent>=0:www/p5-HTTP-Cache-Transparent \
|
|
p5-IO-Stringy>=0:devel/p5-IO-Stringy \
|
|
p5-TimeDate>=0:devel/p5-TimeDate \
|
|
p5-File-Slurp>=0:devel/p5-File-Slurp \
|
|
p5-DateTime>=0:devel/p5-DateTime \
|
|
p5-DateTime-Format-Strptime>=0:devel/p5-DateTime-Format-Strptime \
|
|
p5-JSON>=0:converters/p5-JSON
|
|
|
|
BUILD_DEPENDS= ${XMLTV_DEPENDS}
|
|
RUN_DEPENDS= ${XMLTV_DEPENDS}
|
|
|
|
NO_ARCH= yes
|
|
USES= perl5 tar:bzip2
|
|
USE_PERL5= configure
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_EXTRA_PATCHES_OFF= ${FILESDIR}/extra-noportdocs-patch-Makefile.PL
|
|
|
|
PORTDOCS= COPYING \
|
|
QuickStart \
|
|
README \
|
|
README.tv_check \
|
|
README.win32 \
|
|
tv_check_doc.html \
|
|
tv_check_doc.jpg
|
|
|
|
# idea taken from devel/cvsweb port
|
|
# Specify these directories in relative paths to ${PREFIX}.
|
|
.if !exists(${PREFIX}/www) && exists(${PREFIX}/share/apache)
|
|
CGIDIR?= share/apache/cgi-bin
|
|
ICONSDIR?= share/apache/icons
|
|
.else
|
|
CGIDIR?= www/cgi-bin
|
|
ICONSDIR?= www/icons
|
|
.endif
|
|
#
|
|
PLIST_SUB+= CGIDIR="${CGIDIR}"
|
|
|
|
post-patch:
|
|
# fix man install location
|
|
@${REINPLACE_CMD} -e \
|
|
's|share/man|man|' \
|
|
${WRKSRC}/Makefile.PL
|
|
@${FIND} ${WRKSRC} -type f | \
|
|
${XARGS} -n 10 ${REINPLACE_CMD} \
|
|
-e 's|/usr/bin/perl|${PERL}|'
|
|
@${FIND} ${WRKSRC} -type f \
|
|
-name "*.bak" | \
|
|
${XARGS} -n 10 ${RM}
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/${CGIDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/choose/tv_pick/tv_pick_cgi \
|
|
${STAGEDIR}${PREFIX}/${CGIDIR}/tv_pick.cgi
|
|
|
|
.include <bsd.port.mk>
|