summaryrefslogtreecommitdiff
path: root/chinese
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-03-14 10:28:18 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-03-14 10:28:18 +0000
commitd3be44028267252e129c85c8e1f9ce25594b1856 (patch)
tree047a4e61b08f7e0678c1fe917d83b1eaed1878b8 /chinese
parent- minor typo (diff)
2007-03-14 chinese/big5fs: Use mount_cd9660(8), mount_msdosfs(8), or mount_ntfs(8) instead
2007-03-14 chinese/gbfs: Use mount_cd9660(8), mount_msdosfs(8), or mount_ntfs(8) instead
Notes
Notes: svn path=/head/; revision=187373
Diffstat (limited to 'chinese')
-rw-r--r--chinese/Makefile2
-rw-r--r--chinese/big5fs/Makefile76
-rw-r--r--chinese/big5fs/distinfo3
-rw-r--r--chinese/big5fs/files/big5fs.sh38
-rw-r--r--chinese/big5fs/pkg-descr5
-rw-r--r--chinese/big5fs/pkg-plist6
-rw-r--r--chinese/gbfs/Makefile74
-rw-r--r--chinese/gbfs/distinfo3
-rw-r--r--chinese/gbfs/files/gbfs.sh38
-rw-r--r--chinese/gbfs/pkg-descr5
-rw-r--r--chinese/gbfs/pkg-plist5
11 files changed, 0 insertions, 255 deletions
diff --git a/chinese/Makefile b/chinese/Makefile
index 6a7e5f492562..7b9e399c31a1 100644
--- a/chinese/Makefile
+++ b/chinese/Makefile
@@ -18,7 +18,6 @@
SUBDIR += bg5pdf
SUBDIR += bg5ps
SUBDIR += big5con
- SUBDIR += big5fs
SUBDIR += big5width
SUBDIR += bind8
SUBDIR += bitchx
@@ -46,7 +45,6 @@
SUBDIR += fortunetw
SUBDIR += gb2jis
SUBDIR += gb2ps
- SUBDIR += gbfs
SUBDIR += gbscript
SUBDIR += gcin
SUBDIR += gugod-clean
diff --git a/chinese/big5fs/Makefile b/chinese/big5fs/Makefile
deleted file mode 100644
index 506513e6087a..000000000000
--- a/chinese/big5fs/Makefile
+++ /dev/null
@@ -1,76 +0,0 @@
-# New ports collection makefile for: zh-big5fs
-# Date created: Oct 13, 2000
-# Whom: keith@FreeBSD.org
-#
-# $FreeBSD$
-#
-
-PORTNAME= big5fs
-PORTVERSION= 2.3
-CATEGORIES= chinese
-MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/statue/big5fs/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Reads Big5 filenames on Joliet, VFAT and NTFS filesystems
-
-NO_PACKAGE= Different versions definitely cause crash
-
-SYSDIR= ${DESTDIR}/usr/src/sys
-KMODDIR= ${TARGETDIR}/modules
-PLIST_SUB= MSDOSFSKO=${MSDOSFSKO}
-NO_WRKSUBDIR= yes
-
-DEPRECATED= Use mount_cd9660(8), mount_msdosfs(8), or mount_ntfs(8) instead
-EXPIRATION_DATE= 2007-03-14
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 500000 && ${OSVERSION} < 501109
-MSDOSFSDIR= ${SYSDIR}/fs/msdosfs
-MSDOSFSKO= msdosfs.ko
-MSDOSFSKODIR= ${SYSDIR}/modules/msdosfs
-NTFSDIR= ${SYSDIR}/fs/ntfs
-NTFSPATCH= ntfs_big5.diff.5
-.elif ${OSVERSION} >= 501109
-IGNORE= is obsolete. See mount_cd9660(8), mount_msdosfs(8) or mount_ntfs(8)
-.else
-MSDOSFSDIR= ${SYSDIR}/msdosfs
-MSDOSFSKO= msdos.ko
-MSDOSFSKODIR= ${SYSDIR}/modules/msdos
-NTFSDIR= ${SYSDIR}/ntfs
-NTFSPATCH= ntfs_big5.diff.440001
-.endif
-
-.if !exists (${SYSDIR})
-IGNORE= need to extract kernel source tree before you build this package
-.endif
-
-do-extract:
- @${MKDIR} ${WRKSRC}/msdos ${WRKSRC}/cd9660 ${WRKSRC}/ntfs
- @${CP} -r ${MSDOSFSDIR}/* ${MSDOSFSKODIR}/Makefile ${WRKSRC}/msdos
- @${CP} -r ${SYSDIR}/isofs/cd9660/* ${SYSDIR}/modules/cd9660/Makefile ${WRKSRC}/cd9660
- @${CP} -r ${NTFSDIR}/* ${SYSDIR}/modules/ntfs/Makefile ${WRKSRC}/ntfs
- @(cd ${WRKSRC}; ${TAR} xzf ${DISTDIR}/${DISTFILES} )
- @${REINPLACE_CMD} -e "/^\.PATH/d" ${WRKSRC}/*/Makefile
-.if ${OSVERSION} > 500041
- @${REINPLACE_CMD} -e 's/ __P(\(.*\))/\1/g' ${WRKSRC}/*.diff
-.endif
-
-do-patch:
- @(cd ${WRKSRC}/msdos; ${PATCH} --quiet < ${WRKSRC}/msdos_big5.diff )
- @(cd ${WRKSRC}/cd9660; ${PATCH} --quiet < ${WRKSRC}/cd9660_big5.diff )
- @(cd ${WRKSRC}/ntfs; ${PATCH} --quiet < ${WRKSRC}/${NTFSPATCH} )
- @${REINPLACE_CMD} -e 's,<isofs/cd9660/iso.h>,"iso.h",g' ${WRKSRC}/cd9660/*.c
- @${REINPLACE_CMD} -Ee 's,<(fs/)?ntfs/ntfs_subr.h>,"ntfs_subr.h",g' ${WRKSRC}/ntfs/*.c
-
-do-build:
- @(cd ${WRKSRC}/msdos; make all)
- @(cd ${WRKSRC}/cd9660; make all)
- @(cd ${WRKSRC}/ntfs; make all)
-
-do-install:
- @${MKDIR} ${KMODDIR}
- @${INSTALL_SCRIPT} ${FILESDIR}/big5fs.sh ${TARGETDIR}/etc/rc.d
- @${INSTALL_SCRIPT} ${WRKSRC}/*/*.ko ${KMODDIR}
-
-.include <bsd.port.post.mk>
diff --git a/chinese/big5fs/distinfo b/chinese/big5fs/distinfo
deleted file mode 100644
index 98c509ddca8e..000000000000
--- a/chinese/big5fs/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (big5fs-2.3.tar.gz) = fdb4bb47df4ff15499bde73fc73a8622
-SHA256 (big5fs-2.3.tar.gz) = a3a619dad8782453887d302c3e1de39304c818bbef86e24c9f312df5398b5aff
-SIZE (big5fs-2.3.tar.gz) = 152248
diff --git a/chinese/big5fs/files/big5fs.sh b/chinese/big5fs/files/big5fs.sh
deleted file mode 100644
index 088d26718353..000000000000
--- a/chinese/big5fs/files/big5fs.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
- echo "$0: Cannot determine the PREFIX" >&2
- exit 1
-fi
-
-case "$1" in
-start)
- if [ -x ${PREFIX}/modules/cd9660.ko ]; then
- echo -n ' Big5-cd9660'
- kldload /usr/local/modules/cd9660.ko
- fi
- if [ -x ${PREFIX}/modules/msdos.ko ]; then
- echo -n ' Big5-msdos'
- kldload /usr/local/modules/msdos.ko
- fi
- # msdosfs.ko instead of msdos.ko after FreeBSD 5.0-CURRENT
- if [ -x ${PREFIX}/modules/msdosfs.ko ]; then
- echo -n ' Big5-msdosfs'
- kldload /usr/local/modules/msdosfs.ko
- fi
- if [ -x ${PREFIX}/modules/ntfs.ko ]; then
- echo -n ' Big5-ntfs'
- kldload /usr/local/modules/ntfs.ko
- fi
- ;;
-stop)
- kldunload -v -n cd9660 && echo -n ' Big5-cd9660'
- kldunload -v -n msdos && echo -n ' Big5-msdos'
- kldunload -v -n msdosfs && echo -n ' Big5-msdosfs'
- kldunload -v -n ntfs && echo -n ' Big5-ntfs'
- ;;
-*)
- echo "Usage: $0 {start|stop}" >&2
- exit 1
- ;;
-esac
diff --git a/chinese/big5fs/pkg-descr b/chinese/big5fs/pkg-descr
deleted file mode 100644
index 5e35ea8541bf..000000000000
--- a/chinese/big5fs/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-This port installs three kernel modules, big5cd9660.ko, big5msdos.ko and
-big5ntfs.ko, which will let users read Big5 filenames on Joliet, VFAT,
-and NTFS filesystems, respectively.
-
-The NTFS version is contributed by: huangant.bbs@bbs.cs.ntou.edu.tw
diff --git a/chinese/big5fs/pkg-plist b/chinese/big5fs/pkg-plist
deleted file mode 100644
index 9e0366457718..000000000000
--- a/chinese/big5fs/pkg-plist
+++ /dev/null
@@ -1,6 +0,0 @@
-@comment $FreeBSD$
-etc/rc.d/big5fs.sh
-modules/cd9660.ko
-modules/%%MSDOSFSKO%%
-modules/ntfs.ko
-@dirrmtry modules
diff --git a/chinese/gbfs/Makefile b/chinese/gbfs/Makefile
deleted file mode 100644
index 7a39eaaaf645..000000000000
--- a/chinese/gbfs/Makefile
+++ /dev/null
@@ -1,74 +0,0 @@
-# New ports collection makefile for: zh-gbfs
-# Date created: Oct 13, 2000
-# Whom: statue@freebsd.sinica.edu.tw
-#
-# $FreeBSD$
-#
-
-PORTNAME= gbfs
-PORTVERSION= 1.4
-CATEGORIES= chinese
-MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/statue/gbfs/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Reads GB2312 filenames on Joliet and VFAT filesystems
-
-NO_PACKAGE= "Different versions definitely cause crash"
-
-SYSDIR= /usr/src/sys
-KMODDIR= ${PREFIX}/modules
-PLIST_SUB= MSDOSFSKO=${MSDOSFSKO}
-NO_WRKSUBDIR= yes
-
-DEPRECATED= Use mount_cd9660(8), mount_msdosfs(8), or mount_ntfs(8) instead
-EXPIRATION_DATE= 2007-03-14
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 500000
-MSDOSFSDIR= ${SYSDIR}/fs/msdosfs
-MSDOSFSKO= msdosfs.ko
-MSDOSFSKODIR= ${SYSDIR}/modules/msdosfs
-MSDOSFSPATCH= msdosfs.diff.5
-CD9660PATCH= cd9660.diff.5
-NTFSDIR= ${SYSDIR}/fs/ntfs
-NTFSPATCH= ntfs.diff.5
-BROKEN= "fails to patch - Included patches are broken"
-.else
-MSDOSFSDIR= ${SYSDIR}/msdosfs
-MSDOSFSKO= msdos.ko
-MSDOSFSKODIR= ${SYSDIR}/modules/msdos
-MSDOSFSPATCH= msdosfs.diff
-CD9660PATCH= cd9660.diff
-NTFSDIR= ${SYSDIR}/ntfs
-NTFSPATCH= ntfs.diff
-.endif
-
-.if !exists (${SYSDIR})
-IGNORE= "You need to extract kernel source tree before you build this package"
-.endif
-
-do-extract:
- @${MKDIR} ${WRKSRC}/msdos ${WRKSRC}/cd9660 ${WRKSRC}/ntfs
- @${CP} -r ${MSDOSFSDIR}/* ${MSDOSFSKODIR}/Makefile ${WRKSRC}/msdos
- @${CP} -r ${SYSDIR}/isofs/cd9660/* ${SYSDIR}/modules/cd9660/Makefile ${WRKSRC}/cd9660
- @${CP} -r ${NTFSDIR}/* ${SYSDIR}/modules/ntfs/Makefile ${WRKSRC}/ntfs
- @(cd ${WRKSRC}; ${TAR} xzf ${DISTDIR}/${DISTFILES} )
- @${REINPLACE_CMD} -e "/^\.PATH/d" ${WRKSRC}/*/Makefile
-
-do-patch:
- @(cd ${WRKSRC}/msdos; ${PATCH} --quiet < ${WRKSRC}/${MSDOSFSPATCH} )
- @(cd ${WRKSRC}/cd9660; ${PATCH} --quiet < ${WRKSRC}/${CD9660PATCH} )
- @(cd ${WRKSRC}/ntfs; ${PATCH} --quiet < ${WRKSRC}/${NTFSPATCH} )
-
-do-build:
- @(cd ${WRKSRC}/msdos; make all)
- @(cd ${WRKSRC}/cd9660; make all)
- @(cd ${WRKSRC}/ntfs; make all)
-
-do-install:
- @${MKDIR} ${KMODDIR}
- @${INSTALL_SCRIPT} ${FILESDIR}/gbfs.sh ${PREFIX}/etc/rc.d
- @${INSTALL_SCRIPT} ${WRKSRC}/*/*.ko ${KMODDIR}
-
-.include <bsd.port.post.mk>
diff --git a/chinese/gbfs/distinfo b/chinese/gbfs/distinfo
deleted file mode 100644
index 90d080b96609..000000000000
--- a/chinese/gbfs/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (gbfs-1.4.tar.gz) = 22a72b1a6d9145d88fe89b7bcb367a2e
-SHA256 (gbfs-1.4.tar.gz) = 7e58427a52523867f0e22b470f7b7deeeb82edd6502fe300fcb42d003217e7f7
-SIZE (gbfs-1.4.tar.gz) = 89069
diff --git a/chinese/gbfs/files/gbfs.sh b/chinese/gbfs/files/gbfs.sh
deleted file mode 100644
index 2eff687f8fef..000000000000
--- a/chinese/gbfs/files/gbfs.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
- echo "$0: Cannot determine the PREFIX" >&2
- exit 1
-fi
-
-case "$1" in
-start)
- if [ -x ${PREFIX}/modules/cd9660.ko ]; then
- echo -n ' GB-cd9660'
- kldload /usr/local/modules/cd9660.ko
- fi
- if [ -x ${PREFIX}/modules/msdos.ko ]; then
- echo -n ' GB-msdos'
- kldload /usr/local/modules/msdos.ko
- fi
- # msdosfs.ko instead of msdos.ko after FreeBSD 5.0-CURRENT
- if [ -x ${PREFIX}/modules/msdosfs.ko ]; then
- echo -n ' GB-msdosfs'
- kldload /usr/local/modules/msdosfs.ko
- fi
- if [ -x ${PREFIX}/modules/ntfs.ko ]; then
- echo -n ' GB-ntfs'
- kldload /usr/local/modules/ntfs.ko
- fi
- ;;
-stop)
- kldunload -v -n cd9660 && echo -n ' GB-cd9660'
- kldunload -v -n msdos && echo -n ' GB-msdos'
- kldunload -v -n msdosfs && echo -n ' GB-msdosfs'
- kldunload -v -n ntfs && echo -n ' GB-ntfs'
- ;;
-*)
- echo "Usage: $0 {start|stop}" >&2
- exit 1
- ;;
-esac
diff --git a/chinese/gbfs/pkg-descr b/chinese/gbfs/pkg-descr
deleted file mode 100644
index f1a5ab08f9ab..000000000000
--- a/chinese/gbfs/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-This port installs three kernel modules, cd9660.ko, msdos.ko and
-ntfs.ko, which will let users read GB2312 filenames on Joliet and VFAT
-filesystems, respectively.
-
-The Joliet, VFAT version is contributed by: cjacker@263.net
diff --git a/chinese/gbfs/pkg-plist b/chinese/gbfs/pkg-plist
deleted file mode 100644
index 583756e02836..000000000000
--- a/chinese/gbfs/pkg-plist
+++ /dev/null
@@ -1,5 +0,0 @@
-etc/rc.d/gbfs.sh
-modules/cd9660.ko
-modules/%%MSDOSFSKO%%
-modules/ntfs.ko
-@dirrmtry modules