diff options
author | clive <clive@FreeBSD.org> | 2001-01-03 21:05:06 +0000 |
---|---|---|
committer | clive <clive@FreeBSD.org> | 2001-01-03 21:05:06 +0000 |
commit | a5894965f5df3514e1b6c73407c4b69c84d00a05 (patch) | |
tree | 1c5bffb3b150d1fb0fb38f81ea78835af5a694c5 /textproc/tdtd.el/Makefile | |
parent | 1749b12c7b75015f2bc242be518221a1c566fd60 (diff) | |
download | FreeBSD-ports-a5894965f5df3514e1b6c73407c4b69c84d00a05.zip FreeBSD-ports-a5894965f5df3514e1b6c73407c4b69c84d00a05.tar.gz |
New port: tdtd.el
Emacs major mode for editing SGML and XML DTDs.
PR: 21293
Diffstat (limited to 'textproc/tdtd.el/Makefile')
-rw-r--r-- | textproc/tdtd.el/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/textproc/tdtd.el/Makefile b/textproc/tdtd.el/Makefile new file mode 100644 index 0000000..f125b23 --- /dev/null +++ b/textproc/tdtd.el/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: tdtd.el +# Date created: 15 September 2000 +# Whom: Leo Kim <leo@florida.sarang.net> +# +# $FreeBSD$ +# + +PORTNAME= tdtd.el +PORTVERSION= 0.7.1 +CATEGORIES= textproc +MASTER_SITES= http://www.menteith.com/tdtd/data/ +DISTNAME= tdtd071 +EXTRACT_SUFX= .zip + +MAINTAINER= leo@florida.sarang.net + +RUN_DEPENDS= emacs:${PORTSDIR}/editors/emacs20 + +NO_WRKSUBDIR= yes +NO_BUILD= yes +USE_ZIP= yes + +ELISPDIR= ${PREFIX}/share/emacs/site-lisp +DOCDIR= ${PREFIX}/share/doc + +do-install: + ${MKDIR} ${ELISPDIR} + ${MKDIR} ${DOCDIR}/${PORTNAME} + @(cd ${WRKSRC} && \ + ${INSTALL_DATA} tdtd.el tdtd-font.el ${ELISPDIR} && \ + ${INSTALL_DATA} TODO changelog.txt dot_emacs readme.txt tutorial.txt ${DOCDIR}/${PORTNAME} \ + ) + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |