summaryrefslogtreecommitdiff
path: root/inputmethod/ja-freewnn-lib
AgeCommit message (Collapse)AuthorFilesLines
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.