From: "Austin English" <wizardedit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/kannel/
Date: Tue, 26 Apr 2016 22:27:10 +0000 (UTC) [thread overview]
Message-ID: <1461709592.e44a177e84bbca9e97a6d7477ce2c366f4c6e66d.wizardedit@gentoo> (raw)
commit: e44a177e84bbca9e97a6d7477ce2c366f4c6e66d
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 26 20:28:07 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue Apr 26 22:26:32 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e44a177e
app-mobilephone/kannel: remove kannel-1.4.3-r1 / kannel-1.5.0
Package-Manager: portage-2.2.26
app-mobilephone/kannel/kannel-1.4.3-r1.ebuild | 120 -------------------------
app-mobilephone/kannel/kannel-1.5.0.ebuild | 122 --------------------------
2 files changed, 242 deletions(-)
diff --git a/app-mobilephone/kannel/kannel-1.4.3-r1.ebuild b/app-mobilephone/kannel/kannel-1.4.3-r1.ebuild
deleted file mode 100644
index f833802..0000000
--- a/app-mobilephone/kannel/kannel-1.4.3-r1.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-WANT_AUTOMAKE=none
-
-inherit eutils autotools flag-o-matic ssl-cert user
-
-DESCRIPTION="Powerful SMS and WAP gateway"
-HOMEPAGE="http://www.kannel.org/"
-SRC_URI="http://www.kannel.org/download/${PV}/gateway-${PV}.tar.gz"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="ssl mysql sqlite postgres pcre doc debug pam"
-
-RESTRICT="test" # some tests fail with "address already in use"
-
-RDEPEND="sys-libs/e2fsprogs-libs
- dev-libs/libxml2
- dev-lang/perl
- sys-libs/zlib
- ssl? ( dev-libs/openssl )
- mysql? ( virtual/mysql )
- sqlite? ( dev-db/sqlite:3 )
- postgres? ( dev-db/postgresql[server] )
- pcre? ( dev-libs/libpcre )
- pam? ( virtual/pam )"
-DEPEND="${RDEPEND}
- >=sys-devel/bison-2.2
- doc? ( media-gfx/transfig
- app-text/jadetex
- app-text/docbook-dsssl-stylesheets
- app-text/docbook-sgml-dtd:3.1 )"
-
-S="${WORKDIR}/gateway-${PV}"
-
-pkg_setup() {
- enewgroup kannel
- enewuser kannel -1 -1 /var/log/kannel kannel
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-custom-wap-ports.patch"
- epatch "${FILESDIR}/${P}-autotools.patch"
- epatch "${FILESDIR}/${P}-external-libuuid.patch"
-
- #by default, use current directory for logging
- sed -i -e 's:/tmp/::' doc/examples/kannel.conf
-
- eautoconf
-}
-
-src_configure() {
- append-flags -fno-strict-aliasing # some code breaks strict aliasing
- econf --docdir=/usr/share/doc/${PF} \
- --enable-localtime \
- --disable-start-stop-daemon \
- --without-sqlite2 \
- $(use_enable pam) \
- $(use_enable debug debug) \
- $(use_enable pcre) \
- $(use_enable doc docs) \
- $(use_enable ssl) \
- $(use_with mysql) \
- $(use_with sqlite sqlite3) \
- $(use_with postgres pgsql) \
- || die "econf failed"
-}
-
-# phase disabled by RESTRICT
-# src_test() {
-# emake check || die "emake check failed"
-# }
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- if use doc; then
- emake DESTDIR="${D}" install-docs || die "emake install-docs failed"
- fi
- dodoc README
-
- diropts -g kannel -m0750
- dodir /etc/kannel
- insinto /etc/kannel
- newins doc/examples/kannel.conf kannel.conf.sample
-
- local f
- for f in bearerbox smsbox wapbox; do
- newinitd "${FILESDIR}/kannel-$f.initd" kannel-$f
- done
-
- diropts -g kannel -m0770
- keepdir /var/log/kannel /var/run/kannel
-}
-
-pkg_postinst() {
- if use ssl; then
- elog "SSL certificate can be created by running"
- elog " emerge --config =${CATEGORY}/${PF}"
- fi
-}
-
-pkg_config() {
- if use ssl; then
- if install_cert /etc/ssl/kannel; then
- chown kannel "${ROOT}"etc/ssl/kannel.{pem,key}
- einfo "For using this certificate, you have to add following line to your kannel.conf:"
- einfo ' ssl-client-certkey-file = "/etc/ssl/kannel.pem"'
- einfo ' ssl-server-cert-file = "/etc/ssl/kannel.crt"'
- einfo ' ssl-server-key-file = "/etc/ssl/kannel.key"'
- fi
- else
- eerror "This phase exists only for creating kannel SSL certificate"
- eerror "and ssl USE flag is disabled for this package!"
- fi
-}
diff --git a/app-mobilephone/kannel/kannel-1.5.0.ebuild b/app-mobilephone/kannel/kannel-1.5.0.ebuild
deleted file mode 100644
index 5a4647a..0000000
--- a/app-mobilephone/kannel/kannel-1.5.0.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-WANT_AUTOMAKE=none
-
-inherit eutils autotools flag-o-matic ssl-cert user
-
-DESCRIPTION="Powerful SMS and WAP gateway"
-HOMEPAGE="http://www.kannel.org/"
-SRC_URI="http://www.kannel.org/download/${PV}/gateway-${PV}.tar.gz"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc mysql pam pcre postgres sqlite ssl"
-
-RESTRICT="test" # some tests fail with "address already in use"
-
-RDEPEND="sys-libs/e2fsprogs-libs
- dev-libs/libxml2
- dev-lang/perl
- sys-libs/zlib
- ssl? ( dev-libs/openssl )
- mysql? ( virtual/mysql )
- sqlite? ( dev-db/sqlite:3 )
- postgres? ( dev-db/postgresql[server] )
- pcre? ( dev-libs/libpcre )
- pam? ( virtual/pam )
-"
-DEPEND="${RDEPEND}
- >=sys-devel/bison-2.2
- doc? ( media-gfx/transfig
- app-text/jadetex
- app-text/docbook-dsssl-stylesheets
- app-text/docbook-sgml-dtd:3.1 )
-"
-
-S="${WORKDIR}/gateway-${PV}"
-
-pkg_setup() {
- enewgroup kannel
- enewuser kannel -1 -1 /var/log/kannel kannel
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-1.5.0-custom-wap-ports.patch"
- epatch "${FILESDIR}/${PN}-1.4.3-autotools.patch"
- epatch "${FILESDIR}/${PN}-1.4.3-external-libuuid.patch"
-
- #by default, use current directory for logging
- sed -i -e 's:/tmp/::' doc/examples/kannel.conf
-
- eautoconf
-}
-
-src_configure() {
- append-flags -fno-strict-aliasing # some code breaks strict aliasing
- econf --docdir=/usr/share/doc/${PF} \
- --enable-localtime \
- --disable-start-stop-daemon \
- --without-sqlite2 \
- $(use_enable pam) \
- $(use_enable debug debug) \
- $(use_enable pcre) \
- $(use_enable doc docs) \
- $(use_enable ssl) \
- $(use_with mysql) \
- $(use_with sqlite sqlite3) \
- $(use_with postgres pgsql) \
- || die "econf failed"
-}
-
-# phase disabled by RESTRICT
-# src_test() {
-# emake check || die "emake check failed"
-# }
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
-
- if use doc; then
- emake -j1 DESTDIR="${D}" install-docs || die "emake install-docs failed"
- fi
- dodoc README
-
- diropts -g kannel -m0750
- dodir /etc/kannel
- insinto /etc/kannel
- newins doc/examples/kannel.conf kannel.conf.sample
-
- local f
- for f in bearerbox smsbox wapbox; do
- newinitd "${FILESDIR}/kannel-$f.initd" kannel-$f
- done
-
- diropts -g kannel -m0770
- keepdir /var/log/kannel /var/run/kannel
-}
-
-pkg_postinst() {
- if use ssl; then
- elog "SSL certificate can be created by running"
- elog " emerge --config =${CATEGORY}/${PF}"
- fi
-}
-
-pkg_config() {
- if use ssl; then
- if install_cert /etc/ssl/kannel; then
- chown kannel "${ROOT}"etc/ssl/kannel.{pem,key}
- einfo "For using this certificate, you have to add following line to your kannel.conf:"
- einfo ' ssl-client-certkey-file = "/etc/ssl/kannel.pem"'
- einfo ' ssl-server-cert-file = "/etc/ssl/kannel.crt"'
- einfo ' ssl-server-key-file = "/etc/ssl/kannel.key"'
- fi
- else
- eerror "This phase exists only for creating kannel SSL certificate"
- eerror "and ssl USE flag is disabled for this package!"
- fi
-}
next reply other threads:[~2016-04-26 22:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-26 22:27 Austin English [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-07-20 14:56 [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/kannel/ Mike Gilbert
2016-12-25 12:54 Manuel RĂ¼ger
2018-08-10 22:07 Mikle Kolyada
2018-08-10 22:07 Mikle Kolyada
2019-02-05 18:55 Brian Evans
2019-10-12 18:29 Mikle Kolyada
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1461709592.e44a177e84bbca9e97a6d7477ce2c366f4c6e66d.wizardedit@gentoo \
--to=wizardedit@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox