blob: 99064db23207a6b59ec2b77bd3fc4d0675634213 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
MY_PN="PacketTracer"
MY_PT="${MY_PN}${PV}"
inherit eutils fdo-mime multilib
DESCRIPTION="Cisco's Packet Tracer"
HOMEPAGE="https://www.cisco.com/web/learning/netacad/course_catalog/PacketTracer.html"
SRC_URI="http://pkg.rogentos.ro/~rogentos/${CATEGORY}/${MY_PT}_Generic_Fedora.tar.gz"
RESTRICT="fetch mirror strip"
LICENSE="Cisco_EULA"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc online-exam"
DEPEND="app-arch/gzip"
RDEPEND="doc? ( www-plugins/adobe-flash )
amd64? ( app-emulation/emul-linux-x86-compat
>=app-emulation/emul-linux-x86-qtlibs-20081109 )
!<app-emulation/packettracer-53"
S="${WORKDIR}"
pkg_setup () {
# This is a binary x86 package => ABI=x86
has_multilib_profile && ABI="x86"
}
pkg_nofetch () {
ewarn "To fetch sources you need cisco account which is available in case"
ewarn "you are cisco web-learning student, instructor or you sale cisco hardware, etc.. "
einfo ""
einfo ""
einfo "After that point your browser at http://cisco.netacad.net/"
einfo "Login, go to PacketTracer image and download:"
einfo "Packet Tracer v5.3.2 Application + Tutorial Generic Fedora links (tar.gz) file"
einfo ""
}
src_prepare(){
for file in install set_ptenv.sh tpl.linguist tpl.packettracer \
extensions/ptaplayer bin/linguist; do
rm -fr ${file} || die "unable to rm ${file}"
done
use !doc && rm -fr "${S}/"help/default/tutorials
}
src_install () {
local PKT_HOME="/opt/pt/"
dodir "${PKT_HOME}"
cp -R "${S}"/* "${D}${PKT_HOME}" || die "Install failed!"
doicon "${S}/${PN}-${PV}/art/"{app,pka,pkt,pkz}.{ico,png}
make_wrapper packettracer "./bin/PacketTracer5" "${PKT_HOME}${P}" "${PKT_HOME}${P}/lib"
make_desktop_entry "packettracer" "PacketTracer" "app" "Education;Emulator"
insinto /usr/share/mime/applications
doins "${D}${PKT_HOME}${P}/bin/"*.xml
rm -f "${D}${PKT_HOME}${MY_NAME}bin/"*.xml
dodir /etc/env.d
echo PT5HOME="${PKT_HOME}/${P}" > "${D}/etc/env.d/50${MY_PN}" || die "env.d files install failed"
}
pkg_postinst(){
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
if use doc ; then
einfo " You have doc USE flag"
einfo " For use documentaion , please"
einfo " install you prefered brouser and flashplayer support"
einfo " such mozilla or konqerror"
fi
einfo ""
einfo " If you have multiuser enviroment"
einfo " you mist configure you firewall to use UPnP protocol."
einfo " Additional information see in packettracer user manual "
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
}
|