summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-02-16 18:47:41 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-02-16 18:47:41 +0000
commit4b2c0213e211e7ed4507e07116bde7802bc03bcc (patch)
tree371338ec5266af35bf84ec4115644ae673c001c8 /net-misc
parentFix deps. (diff)
downloadgentoo-2-4b2c0213e211e7ed4507e07116bde7802bc03bcc.tar.gz
gentoo-2-4b2c0213e211e7ed4507e07116bde7802bc03bcc.tar.bz2
gentoo-2-4b2c0213e211e7ed4507e07116bde7802bc03bcc.zip
(non maintainer commit) remove old ebuild that has QA issues, bug 226605
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/siproxd/ChangeLog7
-rw-r--r--net-misc/siproxd/siproxd-0.5.11.ebuild64
2 files changed, 5 insertions, 66 deletions
diff --git a/net-misc/siproxd/ChangeLog b/net-misc/siproxd/ChangeLog
index 3b38101f0030..5e02d9e3e05a 100644
--- a/net-misc/siproxd/ChangeLog
+++ b/net-misc/siproxd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/siproxd
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/ChangeLog,v 1.11 2008/08/16 16:19:54 tove Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/ChangeLog,v 1.12 2009/02/16 18:47:41 darkside Exp $
+
+ 16 Feb 2009; Jeremy Olexa <darkside@gentoo.org> -siproxd-0.5.11.ebuild:
+ (non maintainer commit) remove old ebuild that has QA issues, bug 226605
16 Aug 2008; Torsten Veller <tove@gentoo.org> metadata.xml:
Remove stkn from metadata.xml (#27693)
diff --git a/net-misc/siproxd/siproxd-0.5.11.ebuild b/net-misc/siproxd/siproxd-0.5.11.ebuild
deleted file mode 100644
index 7b0f86e09deb..000000000000
--- a/net-misc/siproxd/siproxd-0.5.11.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/siproxd-0.5.11.ebuild,v 1.3 2007/04/28 17:02:04 swegener Exp $
-
-inherit eutils
-
-IUSE="static doc"
-
-DESCRIPTION="masquerading SIP proxy"
-HOMEPAGE="http://siproxd.sourceforge.net/"
-SRC_URI="mirror://sourceforge/siproxd/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-
-DEPEND=">=net-libs/libosip-2.0.0
- doc? ( app-text/docbook-sgml-utils )"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- epatch ${FILESDIR}/${P}-configure-docs.diff
-
- # re-create configure (stolen from dhcpd :)
- einfo "Re-creating configure..."
- autoreconf -fi || die "autoreconf failed"
-
- # Make the daemon run as user 'siproxd' by default
- sed -i -e "s:nobody:siproxd:" doc/siproxd.conf.example
-}
-
-src_compile() {
- local myconf
-
- use static && \
- myconf="--enable-static"
-
- econf ${myconf} \
- `use_enable doc docs` || die "configure failed"
-
- emake || die "make failed"
-}
-
-src_install() {
- einstall || die "install failed"
-
- newinitd ${FILESDIR}/siproxd.rc6 siproxd
-
- dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO RELNOTES
-
- # Set up siproxd directories
- keepdir /var/lib/siproxd
- keepdir /var/run/siproxd
-}
-
-pkg_postinst() {
- enewgroup siproxd
- enewuser siproxd -1 -1 /dev/null siproxd
-
- fowners siproxd:siproxd /var/lib/siproxd
- fowners siproxd:siproxd /var/run/siproxd
-}