From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-misc/siproxd/Manifest | 2 + .../files/siproxd-0.8.1-amd64_static_build.patch | 26 +++++ net-misc/siproxd/files/siproxd-libtool-2.4.patch | 13 +++ net-misc/siproxd/files/siproxd.rc6 | 31 ++++++ net-misc/siproxd/files/siproxd.rc7 | 31 ++++++ net-misc/siproxd/files/siproxd.rc8 | 22 +++++ net-misc/siproxd/metadata.xml | 10 ++ net-misc/siproxd/siproxd-0.8.0-r2.ebuild | 108 ++++++++++++++++++++ net-misc/siproxd/siproxd-0.8.1-r1.ebuild | 110 +++++++++++++++++++++ 9 files changed, 353 insertions(+) create mode 100644 net-misc/siproxd/Manifest create mode 100644 net-misc/siproxd/files/siproxd-0.8.1-amd64_static_build.patch create mode 100644 net-misc/siproxd/files/siproxd-libtool-2.4.patch create mode 100755 net-misc/siproxd/files/siproxd.rc6 create mode 100755 net-misc/siproxd/files/siproxd.rc7 create mode 100644 net-misc/siproxd/files/siproxd.rc8 create mode 100644 net-misc/siproxd/metadata.xml create mode 100644 net-misc/siproxd/siproxd-0.8.0-r2.ebuild create mode 100644 net-misc/siproxd/siproxd-0.8.1-r1.ebuild (limited to 'net-misc/siproxd') diff --git a/net-misc/siproxd/Manifest b/net-misc/siproxd/Manifest new file mode 100644 index 000000000000..4bf6943ecc30 --- /dev/null +++ b/net-misc/siproxd/Manifest @@ -0,0 +1,2 @@ +DIST siproxd-0.8.0.tar.gz 824404 SHA256 1a0306dbf5dd65f2c6d779bd449cbabba8c1a4cc79ca034e9cc83836c60f8542 SHA512 eb14a6f7a893e3347d316feedca89c1700e2977b9671da7d77c475993137b049e5caad5254e19dc00f5cb4f0f0c767188cdfb02bb16238dd7b56473886063440 WHIRLPOOL a9e618d14b5a5cd9ed954baf121f905c8024ecd069b95db730d4bff0c19590fbc8928b8d4fe51f37959d9ce506136662aaea50590038e01de96d844f41280554 +DIST siproxd-0.8.1.tar.gz 833170 SHA256 df2df04faf5bdb4980cbdfd5516a47898fc47ca1ebc2c628aa48305b20a09dad SHA512 b47c7b74b4d3adeb4fd9536f82c014a123a6fcbe508a4982c9e77e53a8c68b05bc32799f57cf749e860b3e1f19f6502dbea561a410975f9f095754748515964f WHIRLPOOL e70e79113af3fa0e0a00154c474ca89b7587202ef806c31df5fa9d79d2a813ba6fa3fa006fe8971bac5fed54b85540ae44116a8eb0c262a6bb29e5dcc3a4c612 diff --git a/net-misc/siproxd/files/siproxd-0.8.1-amd64_static_build.patch b/net-misc/siproxd/files/siproxd-0.8.1-amd64_static_build.patch new file mode 100644 index 000000000000..af491c167da1 --- /dev/null +++ b/net-misc/siproxd/files/siproxd-0.8.1-amd64_static_build.patch @@ -0,0 +1,26 @@ +--- siproxd-0.8.1/configure.in ++++ siproxd-0.8.1/configure.in +@@ -361,8 +361,9 @@ + dnl link statically to this lib + dnl (this probably only will work on linux yet...) + AC_MSG_CHECKING("where I can find libosip2.a") +- libosip_static=`find $extra_libs $libosip_prefix_dir/lib /lib \ +- /usr/lib /usr/local/lib \ ++ libosip_static=`find $extra_libs $libosip_prefix_dir/lib64 \ ++ $libosip_prefix_dir/lib /lib64 /lib /usr/lib64 \ ++ /usr/lib /usr/local/lib64 /usr/local/lib \ + -name libosip2.a 2>/dev/null|head -1` + if test "x$libosip_static" != "x"; then + LIBS="$libosip_static $LIBS" +@@ -371,8 +372,9 @@ + echo "*** ERROR: a static libosip library is required!";exit 1; + fi + AC_MSG_CHECKING("where I can find libosipparser2.a") +- libosip_static=`find $extra_libs $libosip_prefix_dir/lib /lib \ +- /usr/lib /usr/local/lib \ ++ libosip_static=`find $extra_libs $libosip_prefix_dir/lib64 \ ++ $libosip_prefix_dir/lib /lib64 /lib /usr/lib64 \ ++ /usr/lib /ur/local/lib64 /usr/local/lib \ + -name libosipparser2.a 2>/dev/null|head -1` + if test "x$libosip_static" != "x"; then + LIBS="$libosip_static $LIBS" diff --git a/net-misc/siproxd/files/siproxd-libtool-2.4.patch b/net-misc/siproxd/files/siproxd-libtool-2.4.patch new file mode 100644 index 000000000000..189b32090f7b --- /dev/null +++ b/net-misc/siproxd/files/siproxd-libtool-2.4.patch @@ -0,0 +1,13 @@ +diff -r -U 2 a/src/plugins.h b/src/plugins.h +--- a/src/plugins.h 2010-01-07 12:44:38.000000000 +0100 ++++ b/src/plugins.h 2010-06-19 13:56:30.960679284 +0200 +@@ -25,4 +25,8 @@ + + ++#ifndef lt__PROGRAM__LTX_preloaded_symbols ++#define lt__PROGRAM__LTX_preloaded_symbols lt_libltdl_LTX_preloaded_symbols ++extern const void *lt_preloaded_symbols[]; ++#endif + + /* Plugins must return STS_SUCCESS / SUCCESS_FAILURE */ + diff --git a/net-misc/siproxd/files/siproxd.rc6 b/net-misc/siproxd/files/siproxd.rc6 new file mode 100755 index 000000000000..9d7fae75808b --- /dev/null +++ b/net-misc/siproxd/files/siproxd.rc6 @@ -0,0 +1,31 @@ +#!/sbin/runscript +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + need net +} + +check_config() { + if [[ ! -f /etc/siproxd.conf ]]; then + eerror "Please create /etc/siproxd.conf first!" + return 1 + fi + return 0 +} + +start() { + check_config || return 1 + + ebegin "Starting siproxd" + start-stop-daemon --start --exec /usr/sbin/siproxd -- \ + -p /var/run/siproxd/siproxd.pid -c /etc/siproxd.conf + eend $? +} + +stop() { + ebegin "Stopping siproxd" + start-stop-daemon --stop --pidfile /var/run/siproxd/siproxd.pid + eend $? +} diff --git a/net-misc/siproxd/files/siproxd.rc7 b/net-misc/siproxd/files/siproxd.rc7 new file mode 100755 index 000000000000..88ba0331f466 --- /dev/null +++ b/net-misc/siproxd/files/siproxd.rc7 @@ -0,0 +1,31 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +depend() { + need net +} + +check_config() { + if [[ ! -f /etc/siproxd.conf ]]; then + eerror "Please create /etc/siproxd.conf first!" + return 1 + fi + return 0 +} + +start() { + check_config || return 1 + checkpath -q -d /var/run/siproxd -o siproxd:siproxd + ebegin "Starting siproxd" + start-stop-daemon --start --exec /usr/sbin/siproxd -- \ + -p /var/run/siproxd/siproxd.pid -c /etc/siproxd.conf + eend $? +} + +stop() { + ebegin "Stopping siproxd" + start-stop-daemon --stop --pidfile /var/run/siproxd/siproxd.pid + eend $? +} diff --git a/net-misc/siproxd/files/siproxd.rc8 b/net-misc/siproxd/files/siproxd.rc8 new file mode 100644 index 000000000000..d85b32f22d33 --- /dev/null +++ b/net-misc/siproxd/files/siproxd.rc8 @@ -0,0 +1,22 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +config_file="/etc/siproxd.conf" + +pidfile="/var/run/siproxd/siproxd.pid" +command="/usr/sbin/siproxd" +command_args="-p ${pidfile} -c ${config_file}" + +depend() { + need net +} + +start_pre() { + if [ ! -f "${config_file}" ] ; then + eerror "Please create ${config_file} first!" + return 1 + fi + checkpath -q -d ${pidfile%/*} -o siproxd:siproxd +} diff --git a/net-misc/siproxd/metadata.xml b/net-misc/siproxd/metadata.xml new file mode 100644 index 000000000000..d2e9ec4e9775 --- /dev/null +++ b/net-misc/siproxd/metadata.xml @@ -0,0 +1,10 @@ + + + + + maintainer-needed@gentoo.org + + + siproxd + + diff --git a/net-misc/siproxd/siproxd-0.8.0-r2.ebuild b/net-misc/siproxd/siproxd-0.8.0-r2.ebuild new file mode 100644 index 000000000000..3d507c8213c8 --- /dev/null +++ b/net-misc/siproxd/siproxd-0.8.0-r2.ebuild @@ -0,0 +1,108 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +inherit eutils autotools user + +DESCRIPTION="A proxy/masquerading daemon for the SIP protocol" +HOMEPAGE="http://siproxd.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="examples doc static" +# TODO: debug can be used but dmalloc is breaking the build +# upstream has been contacted, see bug 2649238 in their bugtracker + +RDEPEND=">=net-libs/libosip-3.0.0 + |' src/plugins.h || die "patching plugins.h failed" + + eautoreconf +} + +src_configure() { + # static-libosip2 make it link statically against libosip2 + # static build static version of plugins, forced to true + econf \ + $(use_enable doc) \ + $(use_enable static static-libosip2) \ + --enable-static + #$(use debug && use_enable debug dmalloc) \ + + # statically linked plugins to libosip2 causes a shared lib linking with + # static lib (gcc seems not to like it : portable issue it says). + # there was also DT_TEXREL issue and stripping of static plugins failed + # so shared lib has to be used for plugins + # upstream has been contacted, see bug 2649351 in their bugtracker + if use static; then + sed -i -r -e \ + "s:LIBS =(.*)( \/[^ ]*libosip[^ ]*\.a)( \/[^ ]*libosip[^ ]*\.a)(.*):LIBS_STATIC =\1\2\3\4\nLIBS = \1\4 -losip2 -losipparser2:" \ + src/Makefile || die "patching src/Makefile failed" + sed -i -e \ + "s:\$(siproxd_LDADD) \$(LIBS):\$(siproxd_LDADD) \$(LIBS_STATIC):" \ + src/Makefile || die "patching src/Makefile failed" + fi +} + +src_install() { + einstall || die "einstall failed" + + newinitd "${FILESDIR}"/${PN}.rc6 ${PN} || die "newinitd failed" + + dodoc AUTHORS ChangeLog NEWS README RELNOTES TODO \ + doc/FAQ doc/FLI4L_HOWTO.txt doc/KNOWN_BUGS \ + || die "dodoc failed" + + if use doc; then + dodoc doc/RFC3261_compliance.txt || die "dodoc failed" + # auto-generated doc is not auto-installed + # upstream has been contacted, see bug 2649333 in their bugtracker + dohtml -r doc/html/ || die "dohtml failed" + # pdf is not build all the time + if has_version app-text/docbook-sgml-utils[jadetex]; then + dodoc doc/pdf/*.pdf || die "dodoc failed" + fi + fi + + if use examples; then + docinto examples + dodoc doc/sample_*.txt || die "dodoc failed" + fi + + # set up siproxd directories + keepdir /var/{lib,run}/${PN} || die "keepdir failed" + fowners siproxd:siproxd /var/{lib,run}/${PN} || die "fowners failed" +} + +pkg_postinst() { + if use static; then + elog "static USE flag does not build a _fully_ statically linked binary" + elog "only libosip2 and libosipparser2 are statically linked" + elog "In addition, plugins are dynamically linked with those libs" + fi +} diff --git a/net-misc/siproxd/siproxd-0.8.1-r1.ebuild b/net-misc/siproxd/siproxd-0.8.1-r1.ebuild new file mode 100644 index 000000000000..80f74e528b7e --- /dev/null +++ b/net-misc/siproxd/siproxd-0.8.1-r1.ebuild @@ -0,0 +1,110 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils autotools user + +DESCRIPTION="A proxy/masquerading daemon for the SIP protocol" +HOMEPAGE="http://siproxd.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples doc static" +# TODO: debug can be used but dmalloc is breaking the build +# upstream has been contacted, see bug 2649238 in their bugtracker + +RDEPEND=">=net-libs/libosip-3.0.0 + |' src/plugins.h || die "patching plugins.h failed" + + epatch "${FILESDIR}/${PN}-0.8.1-amd64_static_build.patch" #380835 + + eautoreconf +} + +src_configure() { + # static-libosip2 make it link statically against libosip2 + # static build static version of plugins, forced to true + econf \ + $(use_enable doc) \ + $(use_enable static static-libosip2) \ + $(use_enable !static shared) \ + --enable-static + #$(use debug && use_enable debug dmalloc) \ + + # statically linked plugins to libosip2 causes a shared lib linking with + # static lib (gcc seems not to like it : portable issue it says). + # there was also DT_TEXREL issue and stripping of static plugins failed + # so shared lib has to be used for plugins + # upstream has been contacted, see bug 2649351 in their bugtracker + if use static; then + sed -i -r -e \ + "s:LIBS =(.*)( \/[^ ]*libosip[^ ]*\.a)( \/[^ ]*libosip[^ ]*\.a)(.*):LIBS_STATIC =\1\2\3\4\nLIBS = \1\4 -losip2 -losipparser2:" \ + src/Makefile || die "patching src/Makefile failed" + sed -i -e \ + "s:\$(siproxd_LDADD) \$(LIBS):\$(siproxd_LDADD) \$(LIBS_STATIC):" \ + src/Makefile || die "patching src/Makefile failed" + fi +} + +src_install() { + default + + newinitd "${FILESDIR}"/${PN}.rc8 ${PN} + + dodoc AUTHORS ChangeLog NEWS README RELNOTES TODO \ + doc/FAQ doc/FLI4L_HOWTO.txt doc/KNOWN_BUGS + + if use doc; then + dodoc doc/RFC3261_compliance.txt + # auto-generated doc is not auto-installed + # upstream has been contacted, see bug 2649333 in their bugtracker + dohtml -r doc/html/ + # pdf is not build all the time + if has_version 'app-text/docbook-sgml-utils[jadetex]' ; then + dodoc doc/pdf/*.pdf + fi + fi + + if use examples; then + docinto examples + dodoc doc/sample_*.txt + fi + + # set up siproxd directories + keepdir /var/lib/${PN} + fowners siproxd:siproxd /var/lib/${PN} +} + +pkg_postinst() { + if use static; then + elog "static USE flag does not build a _fully_ statically linked binary" + elog "only libosip2 and libosipparser2 are statically linked" + elog "In addition, plugins are dynamically linked with those libs" + fi +} -- cgit v1.2.3-65-gdbad