---------------------------------------------------------------------- OmegaT 2.2.3 update 1 ---------------------------------------------------------------------- 4 Enhancements 5 Bugfixes ---------------------------------------------------------------------- 2.2.3 update 1 vs. 2.2.3 Implemented requests: - Translatable sheet names for Calc documents http://sourceforge.net/support/tracker.php?aid=2804745 Other enhancements: - Windows installer: changes.txt can be read immediately after the installation - Create the "plugins" folder during installation - Hungarian localisation updated to 2.2.3 (UI, documentation, readme) Bug fix: - HTML cryptic error message "StringIndexOutOfBoundsException" http://sourceforge.net/support/tracker.php?aid=1653822 - On a Mac having both Java 1.5 and 1.6, the Okapi file filter plugin prevented OmegaT to run - Windows installer overwrites existing OmegaT.I4J.ini http://sourceforge.net/support/tracker.php?aid=3152734 - In the Spell Checking options, the uninstall button was selected (pressed) instead of being unabled when the list of dictionaries is empty - XHTML and OpenOffice.org filters: unchecking an option (e.g., Translate href, Translate comments) only took effect after quitting and restarting OmegaT ---------------------------------------------------------------------- OmegaT 2.2.3 ---------------------------------------------------------------------- 9 Enhancements 1 Bugfix ---------------------------------------------------------------------- 2.2.3 vs. 2.2.2 update 1 Implemented requests: - Accept script in language code for documents http://sourceforge.net/support/tracker.php?aid=3139010 - Add a TTX filter http://sourceforge.net/support/tracker.php?aid=1851513 - Proxy authentication for machine translation http://sourceforge.net/support/tracker.php?aid=3132893 Other enhancements: - Typo3 l10nmgr File Filter - Belarusian localisation updated to 2.2.1 update 1 (UI) - Italian localisation updated to 2.2.2 update 1 (UI) - Catalan localisation updated to 2.2.2 update 1 (UI, Readme, documentation) - Dutch localisation updated to 2.2.2 (UI, documentation) - Japanese localisation updated to 2.2.3 (UI) Bug fix: - When a paragraph-based TMX was resegmented to sequence mode, the source language rules were used to segment the target paragraph
57 lines
1.7 KiB
Makefile
57 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2011/01/21 13:01:08 ryo-on Exp $
|
|
#
|
|
|
|
DISTNAME= OmegaT_2.2.3_01_Beta_Without_JRE
|
|
PKGNAME= ${DISTNAME:S/OmegaT_/OmegaT-bin-/:S/_Without_JRE//:S/_/./g}
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=omegat/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://www.omegat.org/
|
|
COMMENT= The translation memory (TM) application written in Java
|
|
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
#PKG_JVMS_ACCEPTED= sun-jdk6
|
|
|
|
USE_JAVA= run
|
|
USE_JAVA2= yes
|
|
USE_TOOLS+= pax
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR} # More than one possibility -- please check manually.
|
|
USE_LANGUAGES= # none
|
|
|
|
SUBST_CLASSES+= fix-omegat
|
|
SUBST_STAGE.fix-omegat= pre-configure
|
|
SUBST_MESSAGE.fix-omegat= fixing pathes
|
|
SUBST_FILES.fix-omegat= OmegaT
|
|
SUBST_SED.fix-omegat= -e 's,@OMEGATDIR@,${PREFIX}/${OMEGATDIR}/,g'
|
|
SUBST_SED.fix-omegat+= -e 's,@JAVA_HOME@,${PKG_JAVA_HOME}/,g'
|
|
|
|
OMEGATDIR= opt/OmegaT
|
|
|
|
INSTALLATION_DIRS= bin \
|
|
${OMEGATDIR} \
|
|
${OMEGATDIR}/docs \
|
|
${OMEGATDIR}/images \
|
|
${OMEGATDIR}/lib
|
|
pre-patch:
|
|
${INSTALL_DATA} ${FILESDIR}/OmegaT ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/*txt ${DESTDIR}${PREFIX}/${OMEGATDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*html ${DESTDIR}${PREFIX}/${OMEGATDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/OmegaT.jar ${DESTDIR}${PREFIX}/${OMEGATDIR}
|
|
cd ${WRKSRC}/docs && pax -rw -pmp * ${DESTDIR}${PREFIX}/${OMEGATDIR}/docs
|
|
${INSTALL_DATA} ${WRKSRC}/images/* ${DESTDIR}${PREFIX}/${OMEGATDIR}/images
|
|
${INSTALL_DATA} ${WRKSRC}/lib/* ${DESTDIR}${PREFIX}/${OMEGATDIR}/lib
|
|
${INSTALL_DATA} ${FILESDIR}/omegat.prefs ${DESTDIR}${PREFIX}/${OMEGATDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/OmegaT ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../mk/java-env.mk"
|
|
.include "../../mk/java-vm.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|