dc33aa59f5
net/gaim -> net-im/gaim net/gaim-latex -> net-im/gaim-latex net/gaim-openq -> net-im/gaim-openq net/gaim-rss-reader -> net-im/gaim-rss-reader net/gicq -> net-im/gicq net/gnomeicu2 -> net-im/gnomeicu2 net/gossip -> net-im/gossip net/ickle -> net-im/ickle net/jabber -> net-im/jabber net/jabber-aim -> net-im/jabber-aim net/jabber-conference -> net-im/jabber-conference net/jabber-jud -> net-im/jabber-jud net/jabber-msn -> net-im/jabber-msn net/jabber-users-agent -> net-im/jabber-users-agent net/jabber-yahoo -> net-im/jabber-yahoo net/jarl -> net-im/jarl net/kf -> net-im/kf net/libicq -> net-im/libicq net/libicq2000 -> net-im/libicq2000 net/loudmouth -> net-im/loudmouth net/meanwhile -> net-im/meanwhile net/meanwhile-gaim -> net-im/meanwhile-gaim net/newsbot -> net-im/newsbot net/ocaml-jabbr -> net-im/ocaml-jabbr net/psi -> net-im/psi net/py-jabber -> net-im/py-jabber net/py-twistedWords -> net-im/py-twistedWords net/p5-Net-Jabber -> net-im/p5-Net-Jabber Repocopied by: marcus
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# New ports collection makefile for: jarl
|
|
# Date created: 10 November 2002
|
|
# Whom: dd
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jarl
|
|
PORTVERSION= 0.5001
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= Jarl-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Perl/Tk Jabber client
|
|
|
|
RUN_DEPENDS= ptksh:${PORTSDIR}/x11-toolkits/p5-Tk \
|
|
${SITE_PERL}/Net/Jabber/IQ.pm:${PORTSDIR}/net-im/p5-Net-Jabber
|
|
|
|
NO_BUILD= yes
|
|
|
|
USE_REINPLACE= yes
|
|
USE_PERL5= yes
|
|
|
|
makeplist:
|
|
${ECHO_CMD} bin/jarl > ${PLIST}
|
|
${FIND} ${PREFIX}/share/jarl -type f -print | ${CUT} -d/ -f4- >> \
|
|
${PLIST}
|
|
${FIND} ${PREFIX}/share/jarl -type d -print | ${CUT} -d/ -f4- | \
|
|
${SORT} -r | ${SED} 's/^/@dirrm /' >> ${PLIST}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s:%%PREFIX%%:${PREFIX}:g" ${WRKSRC}/jarl
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/share/jarl
|
|
${INSTALL_SCRIPT} ${WRKSRC}/jarl ${PREFIX}/bin
|
|
cd ${WRKSRC} && ${FIND} lib bitmaps -type d -print | while read d; do \
|
|
${MKDIR} ${PREFIX}/share/jarl/$$d; \
|
|
${FIND} $$d -maxdepth 1 -type f -print | \
|
|
${XARGS} -t -J% ${INSTALL_DATA} % \
|
|
${PREFIX}/share/jarl/$$d; \
|
|
done;
|
|
|
|
.include <bsd.port.mk>
|