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