diff options
Diffstat (limited to 'irc/erc/Makefile')
-rw-r--r-- | irc/erc/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/irc/erc/Makefile b/irc/erc/Makefile new file mode 100644 index 000000000000..b99af71d8456 --- /dev/null +++ b/irc/erc/Makefile @@ -0,0 +1,33 @@ +# Ports collection makefile for: erc +# Date created: 23 February 2004 +# Whom: Dryice Liu <dryice@liu.com.cn> +# +# $FreeBSD$ +# + +PORTNAME= erc +PORTVERSION= 4.0 +CATEGORIES+= irc elisp +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= erc +PKGNAMESUFFIX= -${EMACS_PORT_NAME} + +MAINTAINER= dryice@liu.com.cn +COMMENT= ERC is an Emacs InternetRelayChat client + +EMACS_PORT_NAME?= emacs21 + +ERC_LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} + +USE_GMAKE= yes + +do-install: + ${MKDIR} ${ERC_LISPDIR} +.for i in *.el *.elc + ${INSTALL_DATA} ${WRKSRC}/${i} ${ERC_LISPDIR} +.endfor + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |