Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/gns3: gns3-0.8.2.ebuild ChangeLog
Date: Thu, 10 May 2012 21:35:17
Message-Id: 20120510213507.B71412004C@flycatcher.gentoo.org
1 hwoarang 12/05/10 21:35:07
2
3 Modified: ChangeLog
4 Added: gns3-0.8.2.ebuild
5 Log:
6 Version bump thanks to Ian Delaney <johneed@×××××××.com>. Bug #415117
7
8 (Portage version: 2.1.10.58/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 net-misc/gns3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gns3/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gns3/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gns3/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/gns3/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 13 Jun 2011 09:23:49 -0000 1.1
24 +++ ChangeLog 10 May 2012 21:35:07 -0000 1.2
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/gns3
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gns3/ChangeLog,v 1.1 2011/06/13 09:23:49 hwoarang Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gns3/ChangeLog,v 1.2 2012/05/10 21:35:07 hwoarang Exp $
31 +
32 +*gns3-0.8.2 (10 May 2012)
33 +
34 + 10 May 2012; Markos Chandras <hwoarang@g.o>
35 + +files/gns3-0.8.2_install_path.patch, +gns3-0.8.2.ebuild:
36 + Version bump thanks to Ian Delaney <johneed@×××××××.com>. Bug #415117
37
38 *gns3-0.7.4 (13 Jun 2011)
39
40
41
42
43 1.1 net-misc/gns3/gns3-0.8.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gns3/gns3-0.8.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gns3/gns3-0.8.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gns3-0.8.2.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/gns3/gns3-0.8.2.ebuild,v 1.1 2012/05/10 21:35:07 hwoarang Exp $
53
54 EAPI="3"
55
56 PYTHON_DEPEND="2"
57
58 inherit distutils eutils
59
60 MY_P=${P/gns/GNS}-src
61
62 DESCRIPTION="Graphical Network Simulator"
63 HOMEPAGE="http://www.gns3.net/"
64 SRC_URI="mirror://sourceforge/gns-3/GNS3/${PV}/${MY_P}.tar.bz2"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70 PYTHON_MODNAME="GNS3"
71
72 DEPEND="x11-libs/qt-gui:4
73 x11-libs/qt-svg:4
74 >=dev-python/PyQt4-4.6.1"
75 RDEPEND="${DEPEND}
76 >=app-emulation/dynamips-0.2.8_rc2"
77
78 S=${WORKDIR}/${MY_P}
79
80 pkg_setup() {
81 python_set_active_version 2
82 python_pkg_setup
83 }
84
85 src_prepare() {
86 # Fix illegal install path; /usr/local
87 epatch "${FILESDIR}"/${P}_install_path.patch
88 python_convert_shebangs -r 2 .
89 distutils_src_prepare
90 }
91
92 src_install() {
93 distutils_src_install
94
95 doicon "${FILESDIR}/${PN}.xpm" \
96 || die "Failed to install ${PN}.xpm"
97 make_desktop_entry "${PN}" "GNS3" "/usr/share/pixmaps/${PN}.xpm" "Utility;Emulator" \
98 || die "make_desktop_entry failed"
99 doman docs/man/${PN}.1 \
100 || die "Installing man pages failed"
101 }