51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# New ports collection makefile for: keitairc2
|
|
# Date created: 18 Jan 2008
|
|
# Whom: Makoto Matsushita <matusita@FreeBSD.ORG>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= keitairc
|
|
PORTVERSION= 2.0
|
|
#PORTREVISION= 1
|
|
CATEGORIES= irc
|
|
MASTER_SITES= SFJP
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/47485
|
|
#DISTNAME= keitairc-2.0
|
|
|
|
#PATCH_SITES= http://home.jp.FreeBSD.org/~matusita/keitairc2/
|
|
|
|
MAINTAINER= matusita@FreeBSD.org
|
|
COMMENT=IRC proxy for mobilephone that have a web interface
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \
|
|
${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \
|
|
${SITE_PERL}/HTTP/Response.pm:${PORTSDIR}/www/p5-libwww \
|
|
${SITE_PERL}/HTML/Template.pm:${PORTSDIR}/www/p5-HTML-Template \
|
|
${SITE_PERL}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \
|
|
${SITE_PERL}/Proc/Daemon.pm:${PORTSDIR}/devel/p5-Proc-Daemon \
|
|
${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig
|
|
|
|
CONFLICTS= keitairc-1.*
|
|
NO_BUILD= yes
|
|
USE_PERL5= 5.8.0+
|
|
USE_PERL5_REASON= runs on perl 5.8 or later
|
|
|
|
post-extract:
|
|
${FIND} ${WRKSRC} -name .cvsignore | ${XARGS} ${RM} -rf
|
|
|
|
post-patch:
|
|
${FIND} ${WRKSRC} -name '*.orig' | ${XARGS} ${RM} -rf
|
|
${REINPLACE_CMD} -i '' -e "s,^#!/usr/bin/perl$$,#!${PERL}," ${WRKSRC}/keitairc
|
|
${REINPLACE_CMD} -i '' -e "s,/usr/share/keitairc/lib,${DATADIR}/lib," ${WRKSRC}/keitairc
|
|
${REINPLACE_CMD} -i '' -e "s,__KEITAIRC_DATA_DIR__,${DATADIR}/lib," ${WRKSRC}/lib/Keitairc/Config.pm
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/keitairc ${PREFIX}/bin
|
|
${MKDIR} ${DATADIR}
|
|
.for dir in doc etc lib
|
|
${CP} -R ${WRKSRC}/${dir} ${DATADIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|