diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2002-05-11 23:13:40 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2002-05-11 23:13:40 +0000 |
commit | be1d2fa9a87e681712521c0cbfe43d40cd944ab2 (patch) | |
tree | 804638bbb7ece1959f942b7f477eba9f1a97fab6 /x11-wm/hackedbox | |
parent | 52682e1035bfd769d5ffe3a348922e0beaca063d (diff) | |
download | ports-be1d2fa9a87e681712521c0cbfe43d40cd944ab2.tar.gz ports-be1d2fa9a87e681712521c0cbfe43d40cd944ab2.zip |
Make links for i18n (cribbed from blackbox port). For some reason,
i18n is broken in this port, but this brings it closer to being
correct.
Notes
Notes:
svn path=/head/; revision=58944
Diffstat (limited to 'x11-wm/hackedbox')
-rw-r--r-- | x11-wm/hackedbox/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x11-wm/hackedbox/Makefile b/x11-wm/hackedbox/Makefile index da71ddca4613..3b40366b53f9 100644 --- a/x11-wm/hackedbox/Makefile +++ b/x11-wm/hackedbox/Makefile @@ -43,6 +43,9 @@ pre-install: ${ECHO_CMD} share/openbox/nls/${ii}/openbox.cat >> ${PLIST} ${ECHO_CMD} @dirrm share/openbox/nls/${ii} >> ${PLIST} .endfor +.for ii in POSIX US_ASCII de en en_US es fr it nl + ${ECHO_CMD} share/openbox/nls/${ii} >> ${PLIST} +.endfor .for ii in ${STYLES} ${ECHO_CMD} share/openbox/styles/${ii} >> ${PLIST} .endfor @@ -67,6 +70,16 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/nls/${ii}/openbox.cat \ ${PREFIX}/share/openbox/nls/${ii}/ .endfor + cd ${PREFIX}/share/openbox/nls/ && \ + ${LN} -s C POSIX && \ + ${LN} -s C US_ASCII && \ + ${LN} -s C en && \ + ${LN} -s C en_US && \ + ${LN} -s de_DE de && \ + ${LN} -s es_ES es && \ + ${LN} -s fr_FR fr && \ + ${LN} -s it_IT it && \ + ${LN} -s nl_NL nl .for ii in ${STYLES} ${INSTALL_DATA} ${WRKSRC}/data/styles/${ii} \ ${PREFIX}/share/openbox/styles/ |