diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
commit | 24934e623441310f644e5f72855b0f2bf9f3cd1a (patch) | |
tree | a453939bf58199bc2c3ff27bcf0accf2b221c6c4 /app-emulation/packettracer | |
parent | 687f45092b4f4ccf33765cee7427f054bae22344 (diff) |
Incoming! Moving Rogento.git to kogaion-desktop. Finally
Diffstat (limited to 'app-emulation/packettracer')
-rw-r--r-- | app-emulation/packettracer/Manifest | 2 | ||||
-rw-r--r-- | app-emulation/packettracer/packettracer-533.ebuild | 102 |
2 files changed, 104 insertions, 0 deletions
diff --git a/app-emulation/packettracer/Manifest b/app-emulation/packettracer/Manifest new file mode 100644 index 00000000..ff160046 --- /dev/null +++ b/app-emulation/packettracer/Manifest @@ -0,0 +1,2 @@ +DIST PacketTracer533_Generic_Fedora.tar.gz 105596078 RMD160 4f38b8ffcc2da286664a902da85d22c9952e4268 SHA1 9f1c348feb86ec3419e0d9c6cd5327ff26197ad4 SHA256 63bc7c285d1dd34dbd2fb00537456097a238ffcd530f1282f78b225273a03fdf +EBUILD packettracer-533.ebuild 2663 RMD160 11322bd76e11043a89afb1a831428bc58bbe9c2a SHA1 a00b86b060b950772ba2e171932de9767e80c9fd SHA256 b2894b3747e493bacf0389973c5959e8a0a7141519b3ea98324e0937b777f63a diff --git a/app-emulation/packettracer/packettracer-533.ebuild b/app-emulation/packettracer/packettracer-533.ebuild new file mode 100644 index 00000000..99064db2 --- /dev/null +++ b/app-emulation/packettracer/packettracer-533.ebuild @@ -0,0 +1,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 + +} |