Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/linuxdcpp: ChangeLog linuxdcpp-1.0.1-r1.ebuild
Date: Sun, 29 Jun 2008 18:46:07
Message-Id: E1KD1uT-0004wm-MC@stork.gentoo.org
1 coldwind 08/06/29 18:46:01
2
3 Modified: ChangeLog
4 Added: linuxdcpp-1.0.1-r1.ebuild
5 Log:
6 Fix security bug #230075.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r3 x86_64)
8
9 Revision Changes Path
10 1.26 net-p2p/linuxdcpp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/linuxdcpp/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/linuxdcpp/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/linuxdcpp/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 2 May 2008 16:07:19 -0000 1.25
23 +++ ChangeLog 29 Jun 2008 18:46:01 -0000 1.26
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-p2p/linuxdcpp
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v 1.25 2008/05/02 16:07:19 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/ChangeLog,v 1.26 2008/06/29 18:46:01 coldwind Exp $
29 +
30 +*linuxdcpp-1.0.1-r1 (29 Jun 2008)
31 +
32 + 29 Jun 2008; Santiago M. Mola <coldwind@g.o>
33 + +files/linuxdcpp-1.0.1-fix-remote-vulnerability.patch,
34 + +linuxdcpp-1.0.1-r1.ebuild:
35 + Fix security bug #230075.
36
37 02 May 2008; Raúl Porcel <armin76@g.o> linuxdcpp-1.0.1.ebuild:
38 Fix SRC_URI, bug #218657
39
40
41
42 1.1 net-p2p/linuxdcpp/linuxdcpp-1.0.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/linuxdcpp/linuxdcpp-1.0.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/linuxdcpp/linuxdcpp-1.0.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: linuxdcpp-1.0.1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-p2p/linuxdcpp/linuxdcpp-1.0.1-r1.ebuild,v 1.1 2008/06/29 18:46:01 coldwind Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Direct connect client, looks and works like famous DC++"
56 HOMEPAGE="http://linuxdcpp.berlios.de"
57 SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
61 IUSE="debug"
62
63 RDEPEND=">=gnome-base/libglade-2.4
64 >=x11-libs/gtk+-2.6
65 app-arch/bzip2
66 dev-libs/openssl"
67 DEPEND="${RDEPEND}
68 media-libs/fontconfig
69 >=dev-util/scons-0.96
70 dev-util/pkgconfig"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${P}-fix-remote-vulnerability.patch
76 }
77
78 src_compile() {
79 local myconf=""
80 use debug && myconf="${myconf} debug=1"
81
82 scons ${myconf} ${MAKEOPTS} CXXFLAGS="${CXXFLAGS}" PREFIX=/usr || die "scons failed"
83 }
84
85 src_install() {
86 insinto /usr/share/${PN}
87 doins -r ${PN} pixmaps glade
88
89 dodoc Readme.txt Changelog.txt Credits.txt
90
91 dosym /usr/share/${PN}/${PN} /usr/bin/${PN}
92 fperms +x /usr/share/${PN}/${PN}
93
94 doicon pixmaps/${PN}.png
95
96 make_desktop_entry ${PN} "${PN}" ${PN}
97 }
98
99 pkg_postinst() {
100 elog
101 elog "After adding first directory to shares you might need to restart linuxdcpp."
102 elog
103 }
104
105
106
107 --
108 gentoo-commits@l.g.o mailing list