summaryrefslogtreecommitdiff
path: root/app-mobilephone/kannel-sqlbox
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-08-25 10:45:55 +0100
commit3cf7c3ef441822c889356fd1812ebf2944a59851 (patch)
treec513fe68548b40365c1c2ebfe35c58ad431cdd77 /app-mobilephone/kannel-sqlbox
parent05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff)
gentoo resync : 25.08.2020
Diffstat (limited to 'app-mobilephone/kannel-sqlbox')
-rw-r--r--app-mobilephone/kannel-sqlbox/Manifest4
-rw-r--r--app-mobilephone/kannel-sqlbox/files/kannel-sqlbox.initd33
-rw-r--r--app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild74
-rw-r--r--app-mobilephone/kannel-sqlbox/metadata.xml14
4 files changed, 0 insertions, 125 deletions
diff --git a/app-mobilephone/kannel-sqlbox/Manifest b/app-mobilephone/kannel-sqlbox/Manifest
deleted file mode 100644
index cd625bf27d19..000000000000
--- a/app-mobilephone/kannel-sqlbox/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX kannel-sqlbox.initd 818 BLAKE2B 0935d27448cab3f3ac6216d04a3b5e5e83cbca961417ee8fa2c3cc2cd133143726a8a85dcb192408345dd7fd323d9c7f85d01ac817ff2b943ec5c2dbc8ebae9e SHA512 80a195dca95e07ae739dd348d0f2bc0d93f283e2897b4a56f249399c9213b8e88c50c43b293ecba8463806ad2682611e3b1addfc1f77b448429d2602572e823e
-DIST gateway-1.5.0.tar.gz 3469476 BLAKE2B c77c43ec782884f8404e70dbe8fb76cb66526ba7f313db7b7ee83073aae71fb2a1661b58be297f0dc2e6bffbccc862d5e7f1239bd4431bbfa4f009848d57face SHA512 5bd35ff40e0f5882367f717e67104a0dc8703b5d6d95654e1268ded15cf6fac6366968b10adbe2eec22b3ac17fe3ae33b4142cd38f51fd3d75a56c8fe7653652
-EBUILD kannel-sqlbox-1.5.0-r1.ebuild 1820 BLAKE2B af0f710eedd6cb10512bcde51195f435a0640dc9cf758591618a507ab62f3ebf81e609f349ab53adaf3305124ffc10383c8561eabf7727054dd530a02e9e4d2b SHA512 f99958221153c494d15edd2e44e0615c35c41ef164dacf6a797303902a314869c2c606395f823069d7b8f0b863aedb13ba49ad83fc799cc0069519a67c6fab34
-MISC metadata.xml 547 BLAKE2B d4a5fd4ff72acf919033017f0b68c750594f8359c9d52ba9fd0a675dc56217bd54e24c4cfd43eb35fe3236cb60c2132aceaf5ea6a42fd95430517ea1f71b9022 SHA512 4fed0437024490404e13873af9b0cfb103cd89cfb878be1c1900a23d506d0c345cb0da2b284b85a940f00c3ab6785ca43e79a92a95cf6bff040f8369d5a610cf
diff --git a/app-mobilephone/kannel-sqlbox/files/kannel-sqlbox.initd b/app-mobilephone/kannel-sqlbox/files/kannel-sqlbox.initd
deleted file mode 100644
index fd270e65e544..000000000000
--- a/app-mobilephone/kannel-sqlbox/files/kannel-sqlbox.initd
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-KANNEL_SERVICE=${SVCNAME#*-}
-
-depend() {
- need kannel-bearerbox
- before kannel-smsbox
-}
-
-checkconfig() {
- if [ ! -f /etc/kannel/kannel.conf ] ; then
- eerror "/etc/kannel/kannel.conf file doesn't exists!"
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting kannel ${KANNEL_SERVICE}"
- start-stop-daemon --start --quiet --exec /usr/sbin/${KANNEL_SERVICE} -- \
- --daemonize --user kannel --logfile /var/log/kannel/${KANNEL_SERVICE}.log \
- --pid-file /var/run/kannel/${KANNEL_SERVICE}.pid /etc/kannel/sqlbox.conf
- eend $?
-}
-
-stop() {
- ebegin "Stopping kannel ${KANNEL_SERVICE}"
- start-stop-daemon --stop --verbose --pidfile /var/run/kannel/${KANNEL_SERVICE}.pid
- eend $?
-}
diff --git a/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild b/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild
deleted file mode 100644
index 02efd90850fc..000000000000
--- a/app-mobilephone/kannel-sqlbox/kannel-sqlbox-1.5.0-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils flag-o-matic readme.gentoo-r1
-
-DESCRIPTION="DB-Based Kannel Box for message queueing"
-HOMEPAGE="http://www.kannel.org/"
-SRC_URI="http://www.kannel.org/download/${PV}/gateway-${PV}.tar.gz"
-
-LICENSE="Apache-1.1 GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ssl doc"
-
-RDEPEND="|| (
- ~app-mobilephone/kannel-${PV}[mysql]
- ~app-mobilephone/kannel-${PV}[sqlite]
- ~app-mobilephone/kannel-${PV}[postgres]
- )
- net-libs/libnsl:0=
- ssl? ( dev-libs/openssl:0 )"
-DEPEND="${RDEPEND}
- doc? ( media-gfx/transfig
- app-text/jadetex
- app-text/docbook-dsssl-stylesheets
- app-text/docbook-sgml-dtd:3.1 )"
-
-S="${WORKDIR}/gateway-${PV}/addons/sqlbox/"
-
-pkg_setup() {
- append-ldflags $(no-as-needed)
- DISABLE_AUTOFORMATTING="yes"
- DOC_CONTENTS="Please view the following page for config information:
-http://www.kannel.org/pipermail/users/2006-October/000859.html
-
-In essence you need to do 3 things:
-1. Create the database (tables will be automatically created by kannel)
-2. Point sqlbox to the smsbox-port in kannel [core] group
-3. Point smsbox to smsbox-port in sqlbox [sqlbox] group
-
-This literally puts sqlbox in between the bearerbox and smsbox
-for data storage into a database"
-}
-
-src_configure() {
- econf --docdir=/usr/share/doc/${PF} \
- --without-ctlib \
- --without-mssql \
- $(use_enable ssl) \
- $(use_enable doc docs)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- if use doc; then
- emake doc/userguide.html
- dohtml doc/userguide.html
- fi
-
- newinitd "${FILESDIR}"/kannel-sqlbox.initd kannel-sqlbox
-
- dodoc AUTHORS ChangeLog NEWS README
- insinto /etc/kannel
- newins example/sqlbox.conf.example sqlbox.conf.sample
-
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/app-mobilephone/kannel-sqlbox/metadata.xml b/app-mobilephone/kannel-sqlbox/metadata.xml
deleted file mode 100644
index fff2720d8361..000000000000
--- a/app-mobilephone/kannel-sqlbox/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>travisghansen@yahoo.com</email>
- <name>Travis Hansen</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Gentoo Proxy Maintainers Project</name>
- </maintainer>
- <longdescription>Sqlbox is a special Kannel box that sits between bearerbox and
-smsbox and uses a database queue to store and forward messages.</longdescription>
-</pkgmetadata>