diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:39:10 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-02-15 23:39:10 +0200 |
commit | 377b452f12024d39dd04b33d4376bf311607f806 (patch) | |
tree | 9234b5d1f4d757eeab0b2e644aae9b4bf8ffcd50 | |
parent | a73613dc265c80e6c8fd00f82c300ba174b3eeef (diff) |
No more packettracer ebuild here. it belongs elsewhere
-rw-r--r-- | app-emulation/packettracer/Manifest | 2 | ||||
-rw-r--r-- | app-emulation/packettracer/packettracer-533.ebuild | 102 |
2 files changed, 0 insertions, 104 deletions
diff --git a/app-emulation/packettracer/Manifest b/app-emulation/packettracer/Manifest deleted file mode 100644 index ff160046..00000000 --- a/app-emulation/packettracer/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 99064db2..00000000 --- a/app-emulation/packettracer/packettracer-533.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# 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 - -} |