summaryrefslogtreecommitdiff
path: root/app-i18n/multiskkserv/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-i18n/multiskkserv/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-i18n/multiskkserv/files')
-rw-r--r--app-i18n/multiskkserv/files/multiskkserv-cdb.patch52
-rw-r--r--app-i18n/multiskkserv/files/multiskkserv.confd10
-rw-r--r--app-i18n/multiskkserv/files/multiskkserv.initd12
3 files changed, 0 insertions, 74 deletions
diff --git a/app-i18n/multiskkserv/files/multiskkserv-cdb.patch b/app-i18n/multiskkserv/files/multiskkserv-cdb.patch
deleted file mode 100644
index c6f0da50309e..000000000000
--- a/app-i18n/multiskkserv/files/multiskkserv-cdb.patch
+++ /dev/null
@@ -1,52 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -126,19 +126,38 @@
- fi
- done
- else
-- if test -d "$with_cdb" -a -f "$with_cdb/cdb.h"; then
-- CDB_DIR="$with_cdb"
-- CDB_INCLUDES="-I$with_cdb"
-- available_cdb="yes"
-- for j in cdb.a buffer.a unix.a byte.a alloc.a; do
-- if test -f "$with_cdb/$j"; then
-- LIBADD_CDB="$LIBADD_CDB $with_cdb/$j"
-+ for i in include include/cdb; do
-+ if test -f "$with_cdb/$i/cdb.h"; then
-+ CDB_DIR="$with_cdb"
-+ CDB_INCLUDES="-I$with_cdb/$i"
-+ available_cdb="yes"
-+ if test -f "$with_cdb/$i/uint32.h"; then
-+ for l in lib64 lib32 lib; do
-+ for a in cdb.a alloc.a buffer.a byte.a unix.a; do
-+ if test -f "$with_cdb/$l/$a"; then
-+ LIBADD_CDB="$LIBADD_CDB $with_cdb/$l/$a"
-+ else
-+ LIBADD_CDB=""
-+ available_cdb="no"
-+ break
-+ fi
-+ done
-+ if test "$available_cdb" = "yes"; then
-+ break
-+ fi
-+ done
- else
-- available_cdb="no"
-- break
-+ save_LIBS="$LIBS"
-+ AC_CHECK_LIB(cdb, cdb_init)
-+ LIBS="$save_LIBS"
-+ LIBADD_CDB="-lcdb"
-+ AC_DEFINE(USE_TINYCDB, 1, [Use tinycdb])
- fi
-- done
-- fi
-+ fi
-+ if test "$available_cdb" = "yes"; then
-+ break
-+ fi
-+ done
- fi
- if test "$available_cdb" = "yes"; then
- AC_MSG_RESULT([cdb found, path: $CDB_DIR])
diff --git a/app-i18n/multiskkserv/files/multiskkserv.confd b/app-i18n/multiskkserv/files/multiskkserv.confd
deleted file mode 100644
index eaaa90def3f8..000000000000
--- a/app-i18n/multiskkserv/files/multiskkserv.confd
+++ /dev/null
@@ -1,10 +0,0 @@
-# Config file for /etc/init.d/multiskkserv
-
-# define which SKK-JISYO to use (you may define multiple files)
-#
-# Example:
-#
-# SKKJISYO_CDB="SKK-JISYO.L.cdb SKK-JISYO.JIS2.cdb SKK-JISYO.jinmei.cdb"
-#
-
-SKKJISYO_CDB="SKK-JISYO.L.cdb"
diff --git a/app-i18n/multiskkserv/files/multiskkserv.initd b/app-i18n/multiskkserv/files/multiskkserv.initd
deleted file mode 100644
index 31c447da9d5d..000000000000
--- a/app-i18n/multiskkserv/files/multiskkserv.initd
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-command="/usr/sbin/${RC_SVCNAME}"
-command_args="-r /usr/share/skk ${SKKJISYO_CDB}"
-command_background="true"
-pidfile="${pidfile:-/run/${RC_SVCNAME}.pid}"
-
-depend() {
- need net
-}