-Add patches for various keymap additions/corrections. (This needs testing, and there's probably more to do). -Add INSTALL/DEINSTALL scripts to do housekeeping tasks properly. -Set myself as maintainer. -Add user-destdir support (another reason for INSTALL/DEINSTALL). -Added variables which could be set by the user. Please let me know if you have any questions/comments.
15 lines
366 B
Text
15 lines
366 B
Text
# $NetBSD: INSTALL,v 1.1 2007/11/09 05:26:43 bsadewitz Exp $
|
|
|
|
XKBBASE="@XKBBASE@"
|
|
XKBCOMP="@XKBCOMP@"
|
|
XKBCOMP_SYMLINK="@XKBCOMP_SYMLINK@"
|
|
XKBCOMPDIR="@XKBCOMPDIR@"
|
|
XKBCOMPDIR_SYMLINK="@XKBCOMPDIR_SYMLINK@"
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
${MKDIR} ${XKBCOMPDIR} && \
|
|
${LN} -sf ${XKBCOMPDIR} ${XKBCOMPDIR_SYMLINK};
|
|
${LN} -sf ${XKBCOMP} ${XKBCOMP_SYMLINK};
|
|
;;
|
|
esac
|