diff options
author | rakuco <rakuco@FreeBSD.org> | 2013-06-18 04:52:03 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2013-06-18 04:52:03 +0800 |
commit | fc490782c14bd92571ce80724a0deae10ae77b9a (patch) | |
tree | 51403e22f95fd0959a6c2e54edb1cde60c5de5b9 /chinese/cxterm/scripts | |
parent | 7c06c97220618a8d4d7163b869aa9841f57fe23a (diff) | |
download | freebsd-ports-gnome-fc490782c14bd92571ce80724a0deae10ae77b9a.tar.gz freebsd-ports-gnome-fc490782c14bd92571ce80724a0deae10ae77b9a.tar.zst freebsd-ports-gnome-fc490782c14bd92571ce80724a0deae10ae77b9a.zip |
Remove chinese/cxterm.
Port expired on 2012-05-10, does not compile.
Diffstat (limited to 'chinese/cxterm/scripts')
-rw-r--r-- | chinese/cxterm/scripts/pre-install | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/chinese/cxterm/scripts/pre-install b/chinese/cxterm/scripts/pre-install deleted file mode 100644 index 8526701b234e..000000000000 --- a/chinese/cxterm/scripts/pre-install +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -x - -# set up the resource file -RESFILE=${PREFIX}/lib/X11/cxterm.dic -sed -e 's|^\(cxterm[*.].*hanziInputDir:\).*$|\1 '"${RESFILE}"'/gb|; - s|^\(cxtermb5[*.].*hanziInputDir:\).*$|\1 '"${RESFILE}"'/big5| - s|^\(cxtermjis[*.].*hanziInputDir:\).*$|\1 '"${RESFILE}"'/jis| - s|^\(cxtermks[*.].*hanziInputDir:\).*$|\1 '"${RESFILE}"'/ks|' \ - ${WRKSRC}/cxterm/CXterm.ad > ${WRKDIR}/CXterm.ad - - -# setup helper script -echo "creating CXterm script for inexperienced users" -CXTERM_SH=${WRKDIR}/CXterm.sh - -echo "#!/bin/sh" > $CXTERM_SH -echo "" >> $CXTERM_SH -echo "CXTERM_AD=${PREFIX}/lib/X11/cxterm.dic/CXterm.ad" >> $CXTERM_SH -echo "XFONTDIR=${PREFIX}/lib/X11/fonts/chinese" >> $CXTERM_SH -echo "" >> $CXTERM_SH -/bin/cat ${WRKSRC}/scripts/CXterm.sh >> $CXTERM_SH - - -# look for Simple fonts from the X11R6 misc fonts collection -if [ ! -f ${LOCALBASE}/lib/X11/fonts/misc/gb16st.pcf.Z ]; then - echo "" - echo "You need to install the X11R6 misc fonts in order to get the" - echo "Simple Chinese fonts." - echo "" -fi |