mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
cf3b33696b
Phonetic Alphabet) Unicode 5 range, written in Keyman keyboard language. The keyboard is developed by SIL Non-Roman Script Initiative (NRSI). This port installs the keyboard so that it can be used through SCIM KMFL IMEngine (textproc/scim-kmfl-imengine). This open source keyboard is provided under SIL's Freeware licence (http://www.sil.org/computing/catalog/freeware.html) which makes it free for personal use only and non-distributable. Besides, <quot>If you plan to redistribute your modified keyboard you must rename it.</quot> WWW: http://scripts.sil.org/UniIPAKeyboard#dee994f5 PR: ports/117171 Submitted by: Nikola Lecic <nikola.lecic at anthesphoria.net>
56 lines
1.8 KiB
Makefile
56 lines
1.8 KiB
Makefile
# New ports collection makefile for: scim-kmfl-sil-ipa-unicode5
|
|
# Date created: 10 October 2007
|
|
# Whom: Nikola Lecic <nikola.lecic@anthesphoria.net>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= scim-kmfl-sil-ipa-unicode5
|
|
PORTVERSION= 1.1.2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://scripts.sil.org/cms/scripts/render_download.php\?site_id=nrsi\&format=file\&media_id=IPAUni_112_Src\&filename=/:1 \
|
|
http://scripts.sil.org/cms/scripts/render_download.php\?site_id=nrsi\&format=file\&media_id=IPAUni_112.pdf\&filename=/:2
|
|
DISTFILES= IPAUni_Src11.zip:1 \
|
|
IPA+Unicode+5.0c_ver+1.1.2_KMN.pdf:2
|
|
DIST_SUBDIR= kmfl
|
|
EXTRACT_ONLY= IPAUni_Src11.zip
|
|
|
|
MAINTAINER= nikola.lecic@anthesphoria.net
|
|
COMMENT= IPA Unicode 5 mnemonic keyboard for KMFL IMEngine of SCIM
|
|
|
|
RUN_DEPENDS= kmflcomp:${PORTSDIR}/textproc/kmflcomp \
|
|
${LOCALBASE}/lib/scim-1.0/1.4.0/IMEngine/kmfl.so:${PORTSDIR}/textproc/scim-kmfl-imengine
|
|
|
|
RESTRICTED= SIL's Freeware License (a) doesn't allow distribution, (b) makes keyboard free for personal use only, (c) doesn't allow distribution of modified keyboard sources under the same name.
|
|
|
|
WRKSRC= ${WRKDIR}/IPA112
|
|
NO_BUILD= yes
|
|
USE_ZIP= yes
|
|
|
|
DOCSDIR_REL= share/doc/kmfl/${PORTNAME}
|
|
DOCSDIR= ${PREFIX}/${DOCSDIR_REL}
|
|
SCIM_KMFL_DIR= share/scim/kmfl
|
|
SCIM_KMFL_ICONS_DIR= share/scim/kmfl/icons
|
|
|
|
SUB_FILES= pkg-message
|
|
PORTDOCS= *
|
|
DOCSLIST= ${WRKSRC}/welcome.htm \
|
|
${DISTDIR}/${DIST_SUBDIR}/IPA+Unicode+5.0c_ver+1.1.2_KMN.pdf
|
|
PLIST_FILES= ${SCIM_KMFL_DIR}/IPAUni11.kmn \
|
|
${SCIM_KMFL_ICONS_DIR}/IPA93.bmp \
|
|
${SCIM_KMFL_ICONS_DIR}/sil.bmp
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/*.kmn ${LOCALBASE}/${SCIM_KMFL_DIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.bmp ${LOCALBASE}/${SCIM_KMFL_ICONS_DIR}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
for doc in ${DOCSLIST} ; do \
|
|
${INSTALL_DATA} $$doc ${DOCSDIR} ; \
|
|
done
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|