mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update version to 1.69.e (this is beta version, 10103091216).
The version supports YaTeX's hilighting for XEmacs (font-lock).
This commit is contained in:
parent
a42cbff412
commit
06ad58dfb7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39296
3 changed files with 26 additions and 9 deletions
|
@ -6,17 +6,20 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= yatex
|
PORTNAME= yatex
|
||||||
PORTVERSION= ${VERSION}
|
PORTVERSION= 1.69.e
|
||||||
CATEGORIES?= print elisp
|
CATEGORIES?= print elisp
|
||||||
MASTER_SITES= http://www.yatex.org/
|
MASTER_SITES= http://www.yatex.org/ \
|
||||||
DISTNAME= ${PORTNAME}${PORTVERSION}
|
http://www.gentei.org/~yuuji/tmp/
|
||||||
|
DISTNAME= ${PORTNAME}${VERSION}
|
||||||
|
#DISTNAME= ${PORTNAME}${PORTVERSION}
|
||||||
|
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}
|
||||||
|
|
||||||
MAINTAINER= taoka@FreeBSD.org
|
MAINTAINER= taoka@FreeBSD.org
|
||||||
|
|
||||||
PKGINSTALL= ${WRKDIR}/INSTALL
|
PKGINSTALL= ${WRKDIR}/INSTALL
|
||||||
PKGDEINSTALL= ${WRKDIR}/DEINSTALL
|
PKGDEINSTALL= ${WRKDIR}/DEINSTALL
|
||||||
PKGMESSAGE= ${WRKDIR}/MESSAGE
|
PKGMESSAGE= ${WRKDIR}/MESSAGE
|
||||||
VERSION= 1.67
|
VERSION= 10103091216
|
||||||
TARGETNAME= YaTeX
|
TARGETNAME= YaTeX
|
||||||
DIRSECTION= The Emacs editor and associated tools
|
DIRSECTION= The Emacs editor and associated tools
|
||||||
EMACS_PORT_NAME?=emacs20
|
EMACS_PORT_NAME?=emacs20
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (yatex1.67.tar.gz) = ff0fba39a1c6f3fca5d6242b8e1134e1
|
MD5 (yatex10103091216.tar.gz) = bd83e924d26c386e5b73597468d89bad
|
||||||
|
|
|
@ -20,10 +20,24 @@
|
||||||
;; (1=Shift JIS, 2=JIS, 3=EUC)
|
;; (1=Shift JIS, 2=JIS, 3=EUC)
|
||||||
;(setq YaTeX-kanji-code 3)
|
;(setq YaTeX-kanji-code 3)
|
||||||
;;
|
;;
|
||||||
;; For XEmacs, it is not supported that YaTeX originally color
|
|
||||||
;; LaTeX commands (e.g. \section{foo}) by using hilit19
|
;; To highlight buffer, LaTeX commands (e.g. \section{foo})
|
||||||
;; so you had better uncomment the next line.
|
(if (featurep 'xemacs)
|
||||||
;(put 'yatex-mode 'font-lock-defaults 'latex-mode)
|
(progn
|
||||||
|
;;;;;; XEmacs 21 or later ;;;;;;
|
||||||
|
(setq YaTeX-use-font-lock t)
|
||||||
|
)
|
||||||
|
(if (string-match "19.34" emacs-version)
|
||||||
|
(progn
|
||||||
|
;;;;;; Emacs 19.34 ;;;;;
|
||||||
|
(setq YaTeX-use-hilit19 t)
|
||||||
|
)
|
||||||
|
(progn
|
||||||
|
;;;;;; Emacs 20 or later ;;;;;;
|
||||||
|
(setq YaTeX-use-hilit19 t)
|
||||||
|
; (setq YaTeX-use-font-lock t)
|
||||||
|
)))
|
||||||
|
|
||||||
;;
|
;;
|
||||||
;;;;;;;; Yahtml (another html-mode) ;;;;;;
|
;;;;;;;; Yahtml (another html-mode) ;;;;;;
|
||||||
;(setq auto-mode-alist
|
;(setq auto-mode-alist
|
||||||
|
|
Loading…
Add table
Reference in a new issue