Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
multiskkserv is a skk server which can use multiple dictionaries.
This server uses cdb format as the dictionary format. cdb is the
efficient and constant (i.e. cannot add, delete, modify) database
format by Dan J. Bernstein, which I think is the appropriate format
for the system-wide constant dictionary storage.

View File

@@ -0,0 +1,9 @@
===========================================================================
$NetBSD: MESSAGE,v 1.1 2011/03/03 10:51:59 ryoon Exp $
The default port number for the SKK service should be added to the
/etc/services and rebuild database:
skkserv 1178/tcp
===========================================================================

View File

@@ -0,0 +1,45 @@
# $NetBSD: Makefile,v 1.4 2012/10/06 14:25:14 asau Exp $
#
DISTNAME= multiskkserv-20100128-ac
PKGNAME= ${DISTNAME:S/-ac//}
CATEGORIES= inputmethod japanese
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://github.com/sina-ht/multiskkserv/
COMMENT= Simple skk multi-dictionary server
LICENSE= gnu-gpl-v2
DEPENDS= skk-jisyo-cdb-[0-9]*:../../inputmethod/skk-jisyo-cdb
FIND_PREFIX:= SKKJISYOCDBDIR=skk-jisyo-cdb
DOCSDIR= ${PREFIX}/share/doc/${PKGBASE}
INSTALLATION_DIRS= ${DOCSDIR}
INSTALL_DOCS= README \
README.j
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
RCD_SCRIPTS= multiskkserv
FILES_SUBST= SKKJISYOCDBDIR=${SKKJISYOCDBDIR}
post-install:
.for filename in ${INSTALL_DOCS}
${INSTALL_DATA} ${WRKSRC}/${filename} ${DESTDIR}/${DOCSDIR}
.endfor
SUBST_CLASSES+= pthread
SUBST_STAGE.pthread= pre-configure
SUBST_FILES.pthread= configure
SUBST_SED.pthread= -e 's/-D_REENTRANT/${PTHREAD_CFLAGS}/g'
SUBST_SED.pthread+= -e 's/-lpthread/${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}/g'
.include "../../mk/find-prefix.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,7 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2010/09/18 11:04:17 obache Exp $
bin/skkdic-p2cdb
sbin/multiskkserv
sbin/multiskkserv-ctl
share/doc/multiskkserv/README
share/doc/multiskkserv/README.j
share/examples/rc.d/multiskkserv

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2010/09/18 11:04:17 obache Exp $
SHA1 (multiskkserv-20100128-ac.tar.bz2) = 0b6594439582a22a334f3a188a57c7ddf7c00bba
RMD160 (multiskkserv-20100128-ac.tar.bz2) = 0116ef3b8b40ad46886a1687d20c738229338afe
Size (multiskkserv-20100128-ac.tar.bz2) = 436233 bytes

View File

@@ -0,0 +1,17 @@
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: multiskkserv.sh,v 1.1.1.1 2010/09/18 11:04:17 obache Exp $
#
# PROVIDE: multiskkserv
# REQUIRE: DAEMON
. /etc/rc.subr
name="multiskkserv"
rcvar=$name
command="@PREFIX@/sbin/${name}"
multiskkserv_flags="@SKKJISYOCDBDIR@/share/skk/SKK-JISYO.L.cdb &"
load_rc_config $name
run_rc_command "$1"