Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/astmanproxy: ChangeLog astmanproxy-1.28.2.ebuild
Date: Mon, 10 Feb 2014 11:34:14
Message-Id: 20140210113411.724152004E@flycatcher.gentoo.org
1 chainsaw 14/02/10 11:34:11
2
3 Modified: ChangeLog
4 Added: astmanproxy-1.28.2.ebuild
5 Log:
6 Peruse active fork by davies147 instead of official github (stalled in 2008) or patching snapshot (stalled in 2005). LDFLAGS respect instilled by Michael "iamnr3" Mair-Keimberger, closes bug #335326. Gave up on the makefile in order to install in parallel properly, fixes bug #298092 by Diego Elio Pettenò.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
9
10 Revision Changes Path
11 1.10 net-misc/astmanproxy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/astmanproxy/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/astmanproxy/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/astmanproxy/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 27 Oct 2013 09:49:49 -0000 1.9
24 +++ ChangeLog 10 Feb 2014 11:34:11 -0000 1.10
25 @@ -1,6 +1,16 @@
26 # ChangeLog for net-misc/astmanproxy
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/ChangeLog,v 1.9 2013/10/27 09:49:49 pacho Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/ChangeLog,v 1.10 2014/02/10 11:34:11 chainsaw Exp $
31 +
32 +*astmanproxy-1.28.2 (10 Feb 2014)
33 +
34 + 10 Feb 2014; Tony Vroon <chainsaw@g.o> +astmanproxy-1.28.2.ebuild,
35 + +files/astmanproxy-1.28.2-gentoo.diff:
36 + Peruse active fork by davies147 instead of official github (stalled in 2008)
37 + or patching snapshot (stalled in 2005). LDFLAGS respect instilled by Michael
38 + "iamnr3" Mair-Keimberger, closes bug #335326. Gave up on the makefile in
39 + order to install in parallel properly, fixes bug #298092 by Diego Elio
40 + Pettenò.
41
42 27 Oct 2013; Pacho Ramos <pacho@g.o> metadata.xml:
43 Cleanup due voip herd removal:
44
45
46
47 1.1 net-misc/astmanproxy/astmanproxy-1.28.2.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/astmanproxy/astmanproxy-1.28.2.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/astmanproxy/astmanproxy-1.28.2.ebuild?rev=1.1&content-type=text/plain
51
52 Index: astmanproxy-1.28.2.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-misc/astmanproxy/astmanproxy-1.28.2.ebuild,v 1.1 2014/02/10 11:34:11 chainsaw Exp $
57
58 EAPI=5
59 inherit base multilib toolchain-funcs
60
61 DESCRIPTION="Proxy for the Asterisk manager interface"
62 HOMEPAGE="https://github.com/davies147/astmanproxy/"
63 SRC_URI="https://github.com/davies147/${PN}/archive/${PV}.tar.gz"
64
65 IUSE=""
66
67 SLOT="0"
68 LICENSE="GPL-2"
69 KEYWORDS="~amd64 ~ppc ~x86"
70
71 DEPEND=""
72 PATCHES=( "${FILESDIR}/${P}-gentoo.diff" )
73
74 src_prepare() {
75 base_src_prepare
76
77 # Fix multilib
78 sed -i -e "s#/usr/lib/#/usr/$(get_libdir)/#" "${S}/Makefile" \
79 || die "multilib sed failed"
80 }
81
82 src_compile() {
83 emake CC="$(tc-getCC)" \
84 LDFLAGS="${LDFLAGS}" \
85 LD="$(tc-getLD)" \
86 RAWLDFLAGS="$(raw-ldflags)"
87 }
88
89 src_install() {
90 dosbin astmanproxy
91
92 dodoc README VERSIONS
93
94 docinto samples
95 dodoc samples/*
96
97 insinto /etc/asterisk
98 doins configs/astmanproxy.conf
99 doins configs/astmanproxy.users
100
101 newinitd "${FILESDIR}"/astmanproxy.rc6 astmanproxy
102 }