mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
f8dfc99c8a
Make this package PREFIX-safe about a symbolic link. Bump up PORTREVISION. Change maintainer's e-mail address.
35 lines
765 B
Makefile
35 lines
765 B
Makefile
# New ports collection makefile for: diff-mode for Emacsen
|
|
# Date created: 18 Apr 2000
|
|
# Whom: OKAZAKI Tetsurou
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= diff-mode.el
|
|
PORTVERSION= 1.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc elisp
|
|
MASTER_SITES= ftp://rum.cs.yale.edu/pub/monnier/misc/
|
|
DISTNAME= diff-mode-${PORTVERSION}.el
|
|
EXTRACT_SUFX= # empty
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= okazaki@FreeBSD.org
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
|
|
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
|
|
|
|
do-install:
|
|
${MKDIR} ${EMACSLISPDIR}
|
|
${INSTALL_DATA} ${_DISTDIR}/${DISTNAME} ${EMACSLISPDIR}/diff-mode.el
|
|
${MKDIR} ${XEMACSLISPDIR}
|
|
${LN} -sf ${EMACSLISPDIR}/diff-mode.el ${XEMACSLISPDIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|