blob: fa8e31b581dbd8e9b3efa52a7abf153f0ba9c6a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
inherit distutils eutils
MY_P=${P/gns/GNS}-src
DESCRIPTION="Graphical Network Simulator"
HOMEPAGE="http://www.gns3.net/"
SRC_URI="mirror://sourceforge/gns-3/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="x11-libs/qt-gui:4
x11-libs/qt-svg:4
>=dev-python/PyQt4-4.1"
RDEPEND="${DEPEND}
>=app-emulation/dynamips-0.2.8_rc2"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}_set_dynamips_path.patch"
epatch "${FILESDIR}/${P}_set_pemu_path.patch"
}
src_install() {
distutils_src_install
doman docs/man/${PN}.1 || die "Installing man pages failed"
insinto /usr/libexec/${PN}
doins "${S}/pemu/pemuwrapper.py" || die "Failed to install pemuwrapper.py"
}
|