summaryrefslogtreecommitdiff
path: root/inputmethod/ja-freewnn-lib
AgeCommit message (Collapse)AuthorFilesLines
2020-03-25inputmethod/ja-freewnn-lib: fix "array subscript has type 'char'"rillig1-1/+14
2020-01-26all: migrate homepages from http to httpsrillig1-2/+2
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
2019-11-02inputmethod: align variable assignmentsrillig1-5/+5
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
2017-01-19Convert all occurrences (353 by my count) ofagc1-3/+3
MASTER_SITES= site1 \ site2 style continuation lines to be simple repeated MASTER_SITES+= site1 MASTER_SITES+= site2 lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint accordingly.
2015-11-03Add SHA512 digests for distfiles for inputmethod categoryagc1-1/+2
Problems found locating distfiles: Package anthy: missing distfile 2ch.t Package anthy: missing distfile okinawa-20090801.t Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-06-29Rename MASTER_SITE_SOURCEFORGE_JP to MASTER_SITE_OSDN.ryoon1-3/+3
sourceforge.jp is renamed to osdn.jp. However its mirror sites are not ready for osdn.jp.
2015-06-13Update ja-FreeWnn-lib and ja-FreeWnn-server to 1.11alpha23,tsutsui3-13/+9
per FreeWnn-1.1.1-a023 release. Upstream changelog in the release note: http://osdn.jp/projects/freewnn/releases/63271 Basically, This alhpa version is a snapshot release. Main changes: * Merge modificaion used in OpenSUSE packages by new member, Mitsutoshi NAKANO. Added explicit function prototype and cast in many places, so we reduced unpredictable effect on 64bit environment. * As a consequence of this change, #define of WNN_CREATE / WNN_NO_CREATE in jl_dic_create() is also changed. We believe no change is needed for client build, but please report if you have problems. * Exit status of jserver changed on receiving some signals (ex. SIGTERM). (Not well documented.) * Fixed problem for parallel build (ex. make -jXX) on pubdic+.
2013-10-15Bump PKGREVISION to 1.mef72-30635/+34
New DISTFILE announced recently as follows. | Subject: [Freewnn-users 136] Released 1.1.1-a022 | From: aono (at) cc.osaka-kyoiku.ac.jp (Tomoki AONO) | Date: Mon, 5 Aug 2013 04:07:28 +0900 Our package had (all) diffs from 8 years old previous release. 3617618 Nov 30 2005 FreeWnn-1.1.1-a021.tar.gz 3702026 Aug 5 04:00 FreeWnn-1.1.1-a022.tar.gz And already named following. PKGNAME= ja-FreeWnn-lib-1.11alpha22 Thus this time, deleting patches and PKGREVISION= 1.
2013-06-10Not MAKE_JOBS_SAFE (seen in joerg's build of 20130601)dholland1-2/+2
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2011-09-13- bump to 1.10 to 1.1.1-a021mef87-459/+30680
See ChangeLog, ChangeLog.en (too many lines to be listed here) Please note minimum security fixes had been updated after 1.10 was committed, so not really whole thing between 1.10 and 1.1.1-a021 - And more, a021 to a022 (CVS version) equivalent patches - Thus PKGNAME= ja-FreeWnn-{lib,server}-1.11alpha22 - DESTDIR support (That's why a022 patches added) - package structure adjusted from (-lib -dict -server -server-bin) to (-lib -server) for minimum modification from DISTFILE to pkgsrc. - some common VARIABLES have been moved to ja-freewnn-lib/Makefile.common ja-freewnn-dict/{DESCR,Makefile,PLIST} ja-freewnn-server-bin/{DESCR,Makefile} Removed ja-freewnn-lib/Makefile.common More variables moved in ja-freewnn-lib/patches 70 files added for a021 -> a022 updates ja-freewnn-server/PLIST - some executable moved sbin to bin by following line in Makefile +CONFIGURE_ARGS+= --disable-traditional-layout - 23 of dictionary files in share/wnn/ja_JP/dic moved from ja-freewnn-dict/PLIST to ja-freewnn-server/PLIST Thanks obache@ for correcting/proofreading for above Changes.
2010-07-11Fixes memory corruption, PR#43586.obache4-7/+16
Bump PKGREVISION.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-8/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-08-15Update MASTER_SITES, remove outdated sites, add sourceforge.jp.obache1-7/+5
Noticed by Zafer Aydogan via private mail.
2008-07-14Mark as destdir ready.joerg1-1/+3
2008-05-20Honour PKGMANDIRtnn1-1/+2
2007-07-04Make it easier to build and install packages "unprivileged", wherejlam1-1/+3
the owner of all installed files is a non-root user. This change affects most packages that require special users or groups by making them use the specified unprivileged user and group instead. (1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to unprivileged.mk. These two variables are lists of other bmake variables that define package-specific users and groups. Packages that have user-settable variables for users and groups, e.g. apache and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP}, etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER} and ${UNPRIVILEGED_GROUP}. (2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-05Drop use of INSTALL_SRC and DEINSTALL_SRC and instead set the properjlam2-31/+2
variables so that the default INSTALL/DEINSTALL scripts from the pkginstall framework do the right thing. Where possible, move some post-install directions for package setup into MESSAGE files so that they may be re-inspected by querying the installed package using "pkg_info -D ...".
2006-06-21Remove conflicting declaration of malloc(); include stdlib.h instead.minskim2-7/+27
2006-05-02Make this build on Darwin.yyamano3-7/+7
Apply the fixes suggested by Tadashi G. Takaoka on tech-pkg-ja@jp.n.o.
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-10Don't create a do-nothing DEINSTALL script.jlam1-1/+2
2006-03-10Use the pkginstall framework to generate the INSTALL script from thejlam2-9/+4
supplied template in ${FILESDIR}/INSTALL, and remove the unnecessary additional targets for manual generation of the same.
2005-12-31More errno fixes for the rest of freewnn.joerg5-1/+64
2005-12-30Fix errno. Add DragonFly.joerg4-10/+20
2005-05-23Removed trailing white-space.rillig1-1/+1
2005-05-05remove auto-registration of RCD_SCRIPTS. patch supplied by Jeremy C. Reed.kei4-9/+6
also updated PKGREVISION of each package. works fine for me. Thank you!
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+2
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digestsagc1-1/+3
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-2/+2
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-04-27Installation of the RCD_SCRIPTS rc.d script is done automaticreed1-4/+1
here. So don't install it twice. (Anyways, ${PREFIX}/etc/rc.d is not the correct location; the RCD_SCRIPTS uses ${RCD_SCRIPTS_EXAMPLEDIR}.)
2004-04-19Unused.wiz1-30/+0
2004-04-18Convert to bl3.wiz2-1/+21
2004-03-29Add a BUILDLINK_PKGBASE.<pkg> definition where it's not equal to <pkg>,jlam1-1/+2
e.g. "BUILDLINK_PKGBASE.gtk?= gtk+". This is mandated by the example buildlink[23].mk files in bsd.buildlink[23].mk.
2004-01-27Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248heinz1-4/+4
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-07-29Use the bsd.pkg.install.mk framework to generate the rc.d script.jmmv2-5/+5
Bump PKGREVISION of ja-freewnn-server-bin to 2.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2002-10-13Unused.wiz1-43/+0
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam15-14/+43
buildlink2.mk files back into the main trunk.
2002-06-20fix jserverrc installation probrem (lib -> server-bin).sakamoto4-7/+46
2002-06-10bump PKGREVISION.sakamoto13-51/+146
add buildlink.mk. DIST_SUBDIR=freewnn. apply to security-related patch ftp://ftp.etl.go.jp/pub/FreeWnn/patch-1.1.0-a01.gz.
2002-05-31Reimport of package ja-FreeWnn-lib from japanese/freewnn-lib into ↵seb14-0/+586
inputmethod/ja-freewnn-lib. This is part of the japanese category retirement. CATEGORIES adjusted.