diff options
author | Austin English <wizardedit@gentoo.org> | 2016-05-03 12:19:44 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-05-03 12:21:41 -0500 |
commit | 365865e702573d98ea583186a001fae04370667c (patch) | |
tree | 69622014938ea0feb54f297b5cc1644022a78892 /net-voip | |
parent | net-p2p/amule: remove old version (diff) | |
download | gentoo-365865e702573d98ea583186a001fae04370667c.tar.gz gentoo-365865e702573d98ea583186a001fae04370667c.tar.bz2 gentoo-365865e702573d98ea583186a001fae04370667c.zip |
net-voip/gnugk: use #!/sbin/openrc-run instead of #!/sbin/runscript
Gentoo-Bug: https://bugs.gentoo.org/573846
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-voip')
-rw-r--r-- | net-voip/gnugk/files/gnugk.rc6 | 4 | ||||
-rw-r--r-- | net-voip/gnugk/gnugk-3.4-r1.ebuild | 127 |
2 files changed, 129 insertions, 2 deletions
diff --git a/net-voip/gnugk/files/gnugk.rc6 b/net-voip/gnugk/files/gnugk.rc6 index 886534f7916c..5bfe1170961c 100644 --- a/net-voip/gnugk/files/gnugk.rc6 +++ b/net-voip/gnugk/files/gnugk.rc6 @@ -1,5 +1,5 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/net-voip/gnugk/gnugk-3.4-r1.ebuild b/net-voip/gnugk/gnugk-3.4-r1.ebuild new file mode 100644 index 000000000000..de164c68e3ca --- /dev/null +++ b/net-voip/gnugk/gnugk-3.4-r1.ebuild @@ -0,0 +1,127 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +inherit versionator + +MY_P1=${PN}-$(replace_version_separator 2 -) +MY_P2=${PN}-$(get_version_component_range 1-2) + +DESCRIPTION="GNU H.323 gatekeeper" +HOMEPAGE="http://www.gnugk.org/" +SRC_URI="mirror://sourceforge/openh323gk/${MY_P1}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +# dev-db/firebird isn't keyworded for ppc but firebird IUSE is masked for ppc +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc firebird lua mysql odbc postgres radius snmp sqlite ssh linguas_en linguas_es linguas_fr" +REQUIRED_USE="doc? ( + || ( linguas_en linguas_es linguas_fr ) + ) +" + +RDEPEND="net-libs/ptlib:= + net-libs/h323plus:= + dev-libs/openssl + firebird? ( dev-db/firebird ) + lua? ( dev-lang/lua ) + mysql? ( virtual/mysql ) + odbc? ( dev-db/unixODBC ) + postgres? ( dev-db/postgresql ) + snmp? ( net-analyzer/net-snmp ) + ssh? ( net-libs/libssh ) + sqlite? ( dev-db/sqlite:3 )" +DEPEND="${RDEPEND} + doc? ( app-text/linuxdoc-tools )" + +S=${WORKDIR}/${MY_P2} + +src_prepare() { + eapply -p1 "${FILESDIR}"/${PN}-3.4-ptrace.patch + eapply "${FILESDIR}"/${PN}-3.2.2-h323plus-buildopts.patch + eapply "${FILESDIR}"/${PN}-3.2.2-lua.cxx-toolkit_h.patch + + default +} + +# TODO: investigate possible ebuild conversion to use cmake +src_configure() { + # --with-large-fdset=4096 is added because of bug #128102 + # and it is recommended in the online manual + econf \ + $(use_enable firebird) \ + $(use_enable lua) \ + $(use_enable mysql) \ + $(use_enable postgres pgsql) \ + $(use_enable odbc unixodbc) \ + $(use_enable radius) \ + $(use_enable snmp netsnmp) \ + $(use_enable sqlite) \ + $(use_enable ssh libssh) \ + --with-large-fdset=4096 +} + +src_compile() { + # PASN_NOPRINT should be set for -debug but it's buggy + # better to prevent issues and keep default settings + # `make debugdepend debugshared` and `make debug` failed (so no debug) + # `make optdepend optnoshared` also failed (so no static) + + # splitting emake calls fixes parallel build issue + emake optdepend + emake \ + PT_LIBDIR="$(ptlib-config --libdir)" \ + OH323_LIBDIR="${EPREFIX}"/usr/lib \ + optshared + # build tool addpasswd + emake -C addpasswd PTLIBDIR="$(ptlib-config --ptlibdir)" + + if use doc; then + cd docs/manual + + if use linguas_en; then + emake html + fi + + if use linguas_es; then + emake html-es + fi + + if use linguas_fr; then + emake html-fr + fi + cd ../.. + fi +} + +src_install() { + dosbin obj_*_*_*/${PN} + dosbin addpasswd/obj_*_*_*/addpasswd + + dodir /etc/${PN} + insinto /etc/${PN} + doins etc/* + + dodoc changes.txt readme.txt + dodoc docs/*.txt docs/*.pdf + + if use doc; then + if use linguas_en; then + dohtml docs/manual/manual*.html + fi + if use linguas_fr; then + dohtml docs/manual/fr/manual-fr*.html + fi + if use linguas_es; then + dohtml docs/manual/es/manual-es*.html + fi + fi + + doman docs/${PN}.1 docs/addpasswd.1 + + newinitd "${FILESDIR}"/${PN}.rc6 ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} +} |