diff options
author | Ade Lovett <ade@FreeBSD.org> | 2002-08-22 19:13:46 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2002-08-22 19:13:46 +0000 |
commit | 76d6ac6122a05c3551580945d540f2f8e1e4c85a (patch) | |
tree | 1ac1f3067b29ba7cf054151113186d5959189940 /chinese | |
parent | 91f316e522763596bca3cb4343e77f9c2296c078 (diff) | |
download | ports-76d6ac6122a05c3551580945d540f2f8e1e4c85a.tar.gz ports-76d6ac6122a05c3551580945d540f2f8e1e4c85a.zip |
Notes
Diffstat (limited to 'chinese')
-rw-r--r-- | chinese/libtabe/Makefile | 3 | ||||
-rw-r--r-- | chinese/libtabe/files/patch-src::tabe_tsidbint.c | 10 | ||||
-rw-r--r-- | chinese/libtabe/files/patch-src::tabe_tsiyindbint.c | 10 | ||||
-rw-r--r-- | chinese/xcin25/Makefile | 4 |
4 files changed, 24 insertions, 3 deletions
diff --git a/chinese/libtabe/Makefile b/chinese/libtabe/Makefile index 971f6d776700..9197bf65f6b7 100644 --- a/chinese/libtabe/Makefile +++ b/chinese/libtabe/Makefile @@ -7,13 +7,14 @@ PORTNAME= libtabe PORTVERSION= 0.2.5 +PORTREVISION= 1 CATEGORIES= chinese MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/libtabe/devel/ MAINTAINER= kcwu@ck.tp.edu.tw .if !defined(USE_DB2) -LIB_DEPENDS= db3.2:${PORTSDIR}/databases/db3 +LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3 .else LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db .endif diff --git a/chinese/libtabe/files/patch-src::tabe_tsidbint.c b/chinese/libtabe/files/patch-src::tabe_tsidbint.c new file mode 100644 index 000000000000..9bb3c612b45b --- /dev/null +++ b/chinese/libtabe/files/patch-src::tabe_tsidbint.c @@ -0,0 +1,10 @@ +--- src/tabe_tsidbint.c.orig Sun Nov 11 12:33:07 2001 ++++ src/tabe_tsidbint.c Thu Aug 22 02:14:53 2002 +@@ -267,3 +267,7 @@ + dbp = (DB *)tsidb->dbp; ++#ifndef HAVE_DB3 + errno = dbp->stat(dbp, &sp, NULL, 0); ++#else ++ errno = dbp->stat(dbp, &sp, 0); ++#endif + if (!errno) { diff --git a/chinese/libtabe/files/patch-src::tabe_tsiyindbint.c b/chinese/libtabe/files/patch-src::tabe_tsiyindbint.c new file mode 100644 index 000000000000..57e27d85288d --- /dev/null +++ b/chinese/libtabe/files/patch-src::tabe_tsiyindbint.c @@ -0,0 +1,10 @@ +--- src/tabe_tsiyindbint.c.orig Sun Nov 11 12:33:08 2001 ++++ src/tabe_tsiyindbint.c Thu Aug 22 02:16:00 2002 +@@ -270,3 +270,7 @@ + dbp = (DB *)tsiyindb->dbp; ++#ifndef HAVE_DB3 + errno = dbp->stat(dbp, &sp, NULL, 0); ++#else ++ errno = dbp->stat(dbp, &sp, 0); ++#endif + if (!errno) { diff --git a/chinese/xcin25/Makefile b/chinese/xcin25/Makefile index 7bfe2334364b..c6011da08786 100644 --- a/chinese/xcin25/Makefile +++ b/chinese/xcin25/Makefile @@ -7,7 +7,7 @@ PORTNAME= xcin PORTVERSION= 2.5.3.p2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese x11 MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/ \ ftp://xcin.linux.org.tw/pub/xcin/xcin/devel/ \ @@ -21,7 +21,7 @@ LIB_DEPENDS= tabe.2:${PORTSDIR}/chinese/libtabe \ intl.4:${PORTSDIR}/devel/gettext \ iconv.3:${PORTSDIR}/converters/libiconv .if !defined(USE_DB2) -LIB_DEPENDS+= db3.2:${PORTSDIR}/databases/db3 +LIB_DEPENDS+= db3.3:${PORTSDIR}/databases/db3 .else LIB_DEPENDS+= db2.0:${PORTSDIR}/databases/db .endif |