mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
Stop installing a backup file created by `patch'.
Fix a syntax error about `mapcar' in patch-aa. Bump up PORTREVISION.
This commit is contained in:
parent
78f84caf4e
commit
7d0c0dfaa5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=59281
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= mule-ucs
|
||||
PORTVERSION= 0.84
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= converters elisp
|
||||
MASTER_SITES= ftp://ftp.m17n.org/pub/mule/Mule-UCS/ \
|
||||
ftp://ftp.etl.go.jp/pub/mule/Mule-UCS/ \
|
||||
@ -39,10 +40,14 @@ do-build:
|
||||
do-install:
|
||||
@${MKDIR} ${MULEUCS_DESTDIR}
|
||||
cd ${WRKSRC}/lisp; \
|
||||
for dir in . big5conv jisx0213 reldata ; do \
|
||||
for dir in . big5conv jisx0213 ; do \
|
||||
${MKDIR} ${MULEUCS_DESTDIR}/$${dir} ; \
|
||||
${INSTALL_DATA} $${dir}/*.el* ${MULEUCS_DESTDIR}/$${dir} ; \
|
||||
${INSTALL_DATA} $${dir}/*.el ${MULEUCS_DESTDIR}/$${dir} ; \
|
||||
${INSTALL_DATA} $${dir}/*.elc ${MULEUCS_DESTDIR}/$${dir} ; \
|
||||
done
|
||||
${MKDIR} ${MULEUCS_DESTDIR}/reldata
|
||||
cd ${WRKSRC}/lisp; \
|
||||
${INSTALL_DATA} reldata/*.el ${MULEUCS_DESTDIR}/reldata
|
||||
@${RM} ${MULEUCS_DESTDIR}/big5conv/big5-comp.el
|
||||
@${RM} ${MULEUCS_DESTDIR}/jisx0213/x0213-comp.el
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- lisp/un-define.el.original Wed Mar 7 07:41:38 2001
|
||||
+++ lisp/un-define.el Thu May 16 13:34:46 2002
|
||||
--- lisp/un-define.el.orig Wed Mar 7 07:41:38 2001
|
||||
+++ lisp/un-define.el Thu May 16 22:15:03 2002
|
||||
@@ -610,13 +610,21 @@
|
||||
|
||||
(mapcar
|
||||
@ -24,8 +24,8 @@
|
||||
+ (mucs-define-coding-system
|
||||
+ (nth 0 y) (nth 1 y) (nth 2 y)
|
||||
+ (nth 3 y) (nth 4 y) (nth 5 y) (nth 6 y))
|
||||
+ (coding-system-put (car y) 'alias-coding-systems (list (car x)))))
|
||||
+ (cdr x)))
|
||||
+ (coding-system-put (car y) 'alias-coding-systems (list (car x))))
|
||||
+ (cdr x))))
|
||||
`((utf-8
|
||||
(utf-8-unix
|
||||
?u "UTF-8 coding system"
|
||||
|
Loading…
Reference in New Issue
Block a user