diff options
author | Jing-Tang Keith Jang <keith@FreeBSD.org> | 2000-11-07 04:50:24 +0000 |
---|---|---|
committer | Jing-Tang Keith Jang <keith@FreeBSD.org> | 2000-11-07 04:50:24 +0000 |
commit | 4d10c5d235600d4c382393da3b398d852439b4ed (patch) | |
tree | 7daf9ad18f6381c22772d8753071fe41035311a1 /chinese/mkisofs/Makefile | |
parent | New MASTER_SITES (diff) |
New port: mkisofs
mkisofs is a pre-mastering program that generates binary ISO9660
filesystem image. Users can then write the image to devices like
CD-R or CD-RW. This port can also generate Chinese Big5 filenames
on Joliet filesystems. Use the -J option to activate it.
Although it works flawlessly, further improvements are possible:
1. Accept GB(Simplified Chinese) filenames also.
2. Upgrade to mkisofs 1.13. 1.13 uses a better structure to manage
I18N, which is (almost all) borrowed from Linux kernel's fs code.
Notes
Notes:
svn path=/head/; revision=34867
Diffstat (limited to 'chinese/mkisofs/Makefile')
-rw-r--r-- | chinese/mkisofs/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/chinese/mkisofs/Makefile b/chinese/mkisofs/Makefile new file mode 100644 index 000000000000..d9afb02568d0 --- /dev/null +++ b/chinese/mkisofs/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: zh-mkisofs +# Date created: 19 Oct 2000 +# Whom: Jing-Tang Keith Jang <keith@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= mkisofs +PORTVERSION= 1.12b5 +CATEGORIES= chinese sysutils +MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/keith/ + +PATCH_SITES= ftp://freebsd.sinica.edu.tw/pub/keith/ +PATCHFILES= mkisofs-1.12b5.big5patch.gz + +MAINTAINER= keith@FreeBSD.org + +GNU_CONFIGURE= yes +ALL_TARGET= World +MAN8= mkisofs.8 isoinfo.8 + +pre-configure: + ${PERL} -pi.orig -e 's:prefix = /usr/local:prefix = ${PREFIX}:' \ + ${WRKSRC}/diag/Makefile.in + +post-build: + cd ${WRKSRC}/diag && make + +post-install: + cd ${WRKSRC}/diag && make install + +.include <bsd.port.mk> |