diff --git a/net-misc/gns3/Manifest b/net-misc/gns3/Manifest deleted file mode 100644 index 4e816ce..0000000 --- a/net-misc/gns3/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX gns3-0.7.2_set_dynamips_path.patch 611 RMD160 7543831dc283972e20ddf740e00211facd3f4206 SHA1 403b50b8faea74120608204b440488dee8a911e0 SHA256 6f6b8ab62714d6e34cbbb2d75769ca27184c812d860942e6feecdf5c624e5c5c -AUX gns3-0.7.2_set_qemu_path.patch 732 RMD160 56d06f13ea4468c5515dd41e2c6f8c4ac38440ff SHA1 44d3f8d0da6a372d88fe8430f285f4a95e33c820 SHA256 7bfd5f5283053df09a90423e79aeb5935b9caa5e3490fda4e21043dde078bf90 -DIST GNS3-0.7.2-src.tar.bz2 2947490 RMD160 c3a643f0530215253b40da2c46c3d1f93018451b SHA1 5fa5efeeb4b4a93da6879d020b18fc21c3876eec SHA256 308aa1452721b234136914edce05907bfb0f054f9ec3e6ef653fd29bb785a854 -EBUILD gns3-0.7.2.ebuild 1022 RMD160 5f02a08ef1b5500ea35b8f3b55421c8c58c67caf SHA1 3b2258b635d267c7ffd99d850849546169f01648 SHA256 dd87287ae67b2f2c17d1b1fc882a4055223daf10f2dd1fb9cf048bb93da39f26 diff --git a/net-misc/gns3/files/gns3-0.7.2_set_dynamips_path.patch b/net-misc/gns3/files/gns3-0.7.2_set_dynamips_path.patch deleted file mode 100644 index 792aff2..0000000 --- a/net-misc/gns3/files/gns3-0.7.2_set_dynamips_path.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesDynamips.py.old 2010-04-09 14:58:40.663821065 +0200 -+++ /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesDynamips.py 2010-04-09 14:59:24.282849072 +0200 -@@ -55,6 +55,8 @@ - # Default path to dynamips executable - if self.conf.path == '' and sys.platform.startswith('win'): - self.conf.path = unicode('dynamips-wxp.exe') -+ else: -+ self.conf.path = unicode('/usr/bin/dynamips') - - # Default path to working directory - if self.conf.workdir == '': - diff --git a/net-misc/gns3/files/gns3-0.7.2_set_qemu_path.patch b/net-misc/gns3/files/gns3-0.7.2_set_qemu_path.patch deleted file mode 100644 index 2eaea48..0000000 --- a/net-misc/gns3/files/gns3-0.7.2_set_qemu_path.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesQemu.py.old 2010-04-12 11:13:56.594820507 +0200 -+++ /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesQemu.py 2010-04-12 11:15:02.599822184 +0200 -@@ -82,8 +82,7 @@ - if sys.platform.startswith('win'): - self.conf.qemuwrapper_path = unicode('qemuwrapper.exe') - else: -- path = os.getcwd() + '/qemuwrapper/qemuwrapper.py' -- self.conf.qemuwrapper_path = unicode(path, errors='replace') -+ self.conf.qemuwrapper_path = unicode('/usr/libexec/gns3/qemuwrapper.py') - - # Default path to working directory - if self.conf.qemuwrapper_workdir == '': diff --git a/net-misc/gns3/gns3-0.7.2.ebuild b/net-misc/gns3/gns3-0.7.2.ebuild deleted file mode 100644 index edd941b..0000000 --- a/net-misc/gns3/gns3-0.7.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 - -PYTHON_DEPEND="2" - -inherit eutils python distutils - -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="~amd64 ~x86" -IUSE="" - -DEPEND=">=dev-python/PyQt4-4.6.1 - x11-libs/qt-gui:4 - x11-libs/qt-svg:4" -RDEPEND="${DEPEND} - >=app-emulation/dynamips-0.2.8_rc2" - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}/${P}_set_dynamips_path.patch" - epatch "${FILESDIR}/${P}_set_qemu_path.patch" - - python_convert_shebangs -r 2 . - - distutils_src_prepare -} - -src_install() { - distutils_src_install - - insinto /usr/libexec/${PN} - doins qemuwrapper/{pemubin,qemuwrapper}.py || die - - doicon "${FILESDIR}"/${PN}.xpm - make_desktop_entry ${PN} "GNS3" ${PN} "Utility;Emulator" - - doman docs/man/${PN}.1 || die -}