1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00

Update to 020928.

This commit is contained in:
Akinori MUSHA 2002-10-05 11:18:46 +00:00
parent 8941e4bf93
commit cd0a61e05e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=67310
3 changed files with 2 additions and 18 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= kakasi
PORTVERSION= 000124
PORTREVISION= 3
PORTVERSION= 020928
CATEGORIES= japanese ruby
MASTER_SITES= http://www.notwork.org/~gotoken/ruby/p/kakasi/
DIST_SUBDIR= ruby
@ -21,8 +20,6 @@ USE_RUBY_EXTCONF= yes
INSTALL_TARGET= site-install
WRKSRC= ${WRKDIR}/${PORTNAME}
DOCS_EN= ChangeLog README wdcnt.html
DOCS_JA= README.jp

View File

@ -1 +1 @@
MD5 (ruby/kakasi-000124.tar.gz) = d79e025f4144c2849c681911c0b65bdb
MD5 (ruby/kakasi-020928.tar.gz) = ca3139a57769828a6d88d7a9db748ce4

View File

@ -1,13 +0,0 @@
--- kakasi.c~ Sun Jan 23 19:16:28 2000
+++ kakasi.c Wed Mar 14 15:26:42 2001
@@ -70,7 +70,9 @@
while (i < RSTRING(src)->len) {
if (*(RSTRING(src)->ptr + i) != '\0') {
buf = kakasi_do((RSTRING(src)->ptr + i));
- rb_str_concat(dst, rb_str_new2(buf));
+ if (buf) {
+ rb_str_concat(dst, rb_str_new2(buf));
+ }
free(buf);
while (*(RSTRING(src)->ptr + i) != '\0') {
i++;