diff options
author | OKAZAKI Tetsurou <okazaki@FreeBSD.org> | 2002-05-16 20:02:26 +0000 |
---|---|---|
committer | OKAZAKI Tetsurou <okazaki@FreeBSD.org> | 2002-05-16 20:02:26 +0000 |
commit | 7d0c0dfaa5da74f4edadfe5d6abd3c7e153ee024 (patch) | |
tree | 818930b6449280f940359859dd8eb95ce40412da /converters | |
parent | - fix missing header file problem. (diff) |
Stop installing a backup file created by `patch'.
Fix a syntax error about `mapcar' in patch-aa.
Bump up PORTREVISION.
Notes
Notes:
svn path=/head/; revision=59281
Diffstat (limited to 'converters')
-rw-r--r-- | converters/mule-ucs/Makefile | 9 | ||||
-rw-r--r-- | converters/mule-ucs/files/patch-aa | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/converters/mule-ucs/Makefile b/converters/mule-ucs/Makefile index fd1961242235..c0a5461ac487 100644 --- a/converters/mule-ucs/Makefile +++ b/converters/mule-ucs/Makefile @@ -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 diff --git a/converters/mule-ucs/files/patch-aa b/converters/mule-ucs/files/patch-aa index e216f07821fa..aaf62b03cb9d 100644 --- a/converters/mule-ucs/files/patch-aa +++ b/converters/mule-ucs/files/patch-aa @@ -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" |