summaryrefslogtreecommitdiff
path: root/editors/semi113/Makefile
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>1999-05-09 16:54:11 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>1999-05-09 16:54:11 +0000
commitb72cb46db9e4503ec66806e963c685bd7ea6f0a7 (patch)
tree204f35f06db71cc12980292fc448b1ff56985122 /editors/semi113/Makefile
parentFix checksum (diff)
New port: editors/semi-emacs-current.
Notes
Notes: svn path=/head/; revision=18665
Diffstat (limited to 'editors/semi113/Makefile')
-rw-r--r--editors/semi113/Makefile114
1 files changed, 114 insertions, 0 deletions
diff --git a/editors/semi113/Makefile b/editors/semi113/Makefile
new file mode 100644
index 000000000000..dceffeb63728
--- /dev/null
+++ b/editors/semi113/Makefile
@@ -0,0 +1,114 @@
+# New ports collection makefile for: semi-current for emacs
+# Version required: 1.13.3
+# Date created: 9 May 1999
+# Whom: Shigeyuki FUKUSHIMA <shige@FreeBSD.ORG>
+#
+# $Id$
+#
+
+DISTNAME= semi-${SEMI_VER}
+CATEGORIES= editors elisp
+MASTER_SITES= ftp://ftp.jaist.ac.jp/pub/GNU/elisp/semi/semi-1.13-for-flim-1.12/
+
+MAINTAINER?= shige@FreeBSD.ORG
+
+PORTCLASS?= master
+
+# distfile version
+FLIM_VER= 1.12.5
+SEMI_VER= 1.13.3
+SEMIDOCDIR= share/doc/semi
+SEMI_SETUPEL= semi-setup.el
+
+.if (${PORTCLASS} == "master")
+# emacs port setup
+EMACS_NAME= emacs
+EMACS_PORT= emacs
+EMACS_VER= 19.34
+EMACS_LIBDIR= share/${EMACS_NAME}
+REQUIRE_SETUPEL= YES
+.endif
+
+# target name for make build
+ALL_TARGET?= elc
+
+# if RUN_DEPENDS-emacs port name has the suffix '-common'.
+.if !defined(HAVE_COMMON_PORT)
+HAVE_COMMON_PORT= NO
+.endif
+# if RUN_DEPENDS-emacs needs setup elisp
+.if !defined(REQUIRE_SETUP)
+REQUIRE_SETUPEL= NO
+.endif
+
+.if defined(EMACS_PORT)
+PKGNAME= semi-${EMACS_PORT}-${SEMI_VER}
+EMACS_CMD= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER}
+BUILD_DEPENDS= ${EMACS_CMD}:${PORTSDIR}/editors/${EMACS_PORT}
+.if defined(HAVE_COMMON_PORT) && (${HAVE_COMMON_PORT} == "YES")
+RUN_DEPENDS= ${EMACS_CMD}:${PORTSDIR}/editors/${EMACS_PORT}-common
+.else
+RUN_DEPENDS= ${EMACS_CMD}:${PORTSDIR}/editors/${EMACS_PORT}
+.endif
+SCRIPTS_ENV= EMACS_LIBDIR=${EMACS_LIBDIR} EMACS_VER=${EMACS_VER}
+PLIST_SUB= EMACS_LIBDIR=${EMACS_LIBDIR} EMACS_VER=${EMACS_VER} \
+ SEMIDOCDIR=${SEMIDOCDIR}
+MAKE_FLAGS= EMACS=${EMACS_CMD}
+.if (${EMACS_VER} == "19.34")
+# depends on custom: emacs-19.34 or mule-19.34
+BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/${EMACS_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT}
+RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/${EMACS_VER}/site-lisp/custom.el:${PORTSDIR}/editors/custom-${EMACS_PORT}
+.endif
+# depends on apel
+BUILD_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/${EMACS_VER}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT}
+RUN_DEPENDS+= ${PREFIX}/${EMACS_LIBDIR}/${EMACS_VER}/site-lisp/emu/emu.el:${PORTSDIR}/editors/apel-${EMACS_PORT}
+# depends on flim
+BUILD_DEPENDS+= ${PKG_DBDIR}/flim-${EMACS_PORT}-${FLIM_VER}:${PORTSDIR}/editors/flim-${EMACS_PORT}-current
+RUN_DEPENDS+= ${PKG_DBDIR}/flim-${EMACS_PORT}-${FLIM_VER}:${PORTSDIR}/editors/flim-${EMACS_PORT}-current
+.else
+.BEGIN:
+ @${ECHO} "Error: Bad port."
+ @${ECHO} "You must define EMACS_NAME, EMACS_PORT, EMACS_VER, EMACS_LIBDIR."
+ @${FALSE}
+.endif
+
+# info files JIS to EUC
+BUILD_DEPENDS+= nkf:${PORTSDIR}/japanese/nkf
+
+.if (${REQUIRE_SETUPEL} == "YES")
+pre-configure:
+ @${CP} ${FILESDIR}/${SEMI_SETUPEL}.in ${WRKDIR}
+.endif
+
+.include <bsd.port.pre.mk>
+
+MAKEINFO= makeinfo --no-split --no-validate
+
+post-build:
+ @(cd ${WRKSRC} ; \
+ for i in mime-ui-en.texi mime-ui-ja.texi; do \
+ ${MV} $${i} $${i}.jis ; \
+ ${CAT} $${i}.jis | nkf -e > $${i} ; \
+ ${ECHO_MSG} "===> Please ignore the following errors." ; \
+ ${MAKEINFO} $${i} || ${TRUE} ; \
+ done)
+
+post-install:
+ @(cd ${WRKSRC} ; \
+ for i in mime-ui-en.info mime-ui-ja.info; do \
+ ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/info ; \
+ install-info ${PREFIX}/info/$${i} ${PREFIX}/info/dir ; \
+ done)
+.if (${REQUIRE_SETUPEL} == "YES")
+ @${INSTALL_DATA} ${WRKDIR}/${SEMI_SETUPEL} \
+ ${PREFIX}/${EMACS_LIBDIR}/site-lisp
+.endif
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${PREFIX}/${SEMIDOCDIR}
+ @(cd ${WRKSRC} ; \
+ for i in ChangeLog NEWS README.* TODO VERSION ; do \
+ ${INSTALL_DATA} $${i} ${PREFIX}/${SEMIDOCDIR}/ ; \
+ done)
+.endif
+
+.include <bsd.port.post.mk>