090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# New ports collection makefile for: irchat-jp
|
|
# Date Created: 8 Aug 2007
|
|
# Whom: Makoto Matsushita <matusita@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= irchat-jp
|
|
PORTVERSION= 26.d
|
|
#PORTREVISION= 0
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc elisp
|
|
MASTER_SITES= http://www.ircnet.jp/dist/irchat/:master \
|
|
${MASTER_SITE_LOCAL:S/$/:backup/}
|
|
MASTER_SITE_SUBDIR= "":master matusita/${PORTNAME}/:backup
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//}
|
|
DISTFILES= ${DISTNAME}.tgz:master,backup
|
|
|
|
MAINTAINER= matusita@FreeBSD.org
|
|
COMMENT= IRC client for Emacs, derived from irchat
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/dcc:${PORTSDIR}/irc/dcc
|
|
|
|
NO_WRKSUBDIR= YES
|
|
NO_BUILD= YES
|
|
USE_EMACS= YES
|
|
|
|
LISPDIR?= ${EMACS_SITE_LISPDIR}/${PORTNAME}
|
|
LISPFILES= irchat-commands.el irchat-ctcp.el irchat-dcc.el \
|
|
irchat-filter.el irchat-globals.el irchat-handle.el \
|
|
irchat-inlines.el irchat-iso-2022-jp.el irchat-misc.el \
|
|
irchat-original-copyright.el irchat-vars.el irchat.el
|
|
|
|
PLIST_DIRS= ${LISPDIR}
|
|
.for f in ${LISPFILES}
|
|
PLIST_FILES+= ${LISPDIR}/${f}
|
|
.endfor
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/${LISPDIR}
|
|
.for f in ${LISPFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/${LISPDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|