blob: a5a7f4fc29b26793a5874b685a3c2dbdc4cbc068 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# New ports collection makefile for: xslide.el
# Date created: 14 January 2002
# Whom: Leo Kim <leo@florida.sarang.net>
#
# $FreeBSD$
#
PORTNAME= xslide.el
PORTVERSION= 0.2
CATEGORIES= textproc elisp
MASTER_SITES= http://www.menteith.com/xslide/data/
DISTNAME= xslide
MAINTAINER= ports@FreeBSD.org
COMMENT= Emacs major mode for editing XSL stylesheets
RUN_DEPENDS= emacs:${PORTSDIR}/editors/emacs
NO_WRKSUBDIR= yes
NO_BUILD= yes
USE_ZIP= yes
ELISPDIR= ${PREFIX}/share/emacs/site-lisp
do-install:
@${MKDIR} ${ELISPDIR}
@${MKDIR} ${DOCSDIR}
(cd ${WRKSRC} && \
${INSTALL_DATA} \
xslide.el \
xslide-abbrev.el \
xslide-data.el \
xslide-font.el \
xslide-initial.xsl \
xslide-process.el \
${ELISPDIR} && \
${INSTALL_DATA} \
CHANGELOG.TXT README.TXT ${DOCSDIR} \
)
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|