diff options
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/pythoncad/ChangeLog | 5 | ||||
-rw-r--r-- | sci-misc/pythoncad/pythoncad-1.37.ebuild | 55 |
2 files changed, 4 insertions, 56 deletions
diff --git a/sci-misc/pythoncad/ChangeLog b/sci-misc/pythoncad/ChangeLog index 06f06200aa10..7fc7bc30f544 100644 --- a/sci-misc/pythoncad/ChangeLog +++ b/sci-misc/pythoncad/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-misc/pythoncad # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/pythoncad/ChangeLog,v 1.9 2013/06/01 22:28:48 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/pythoncad/ChangeLog,v 1.10 2013/06/08 11:44:01 pinkbyte Exp $ + + 08 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> -pythoncad-1.37.ebuild: + Drop old revision *pythoncad-1.37-r1 (01 Jun 2013) diff --git a/sci-misc/pythoncad/pythoncad-1.37.ebuild b/sci-misc/pythoncad/pythoncad-1.37.ebuild deleted file mode 100644 index 4728d2910372..000000000000 --- a/sci-misc/pythoncad/pythoncad-1.37.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/pythoncad/pythoncad-1.37.ebuild,v 1.4 2013/06/01 21:21:50 pinkbyte Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit eutils distutils versionator - -MY_PN="PythonCAD" -MY_PV="DS$(get_major_version)-R$(get_after_major_version)" -MY_P=${MY_PN}-${MY_PV} - -DESCRIPTION="CAD program written in PyGTK" -HOMEPAGE="http://sourceforge.net/projects/pythoncad" -SRC_URI="mirror://sourceforge/pythoncad/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="dev-python/pygtk:2" -DEPEND="" - -PYTHON_MODNAME=${MY_PN} - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}/${P}-png.patch" - - sed -i \ - -e "s/gtkpycad.png/pythoncad.png/" \ - -e "s/gtkpycad.py/pythoncad/" \ - "pythoncad.desktop" || die "sed failed" -} - -src_install() { - distutils_src_install - - install_pythoncad() { - newbin gtkpycad.py pythoncad-${PYTHON_ABI} - } - python_execute_function -q install_pythoncad - python_generate_wrapper_scripts "${ED}usr/bin/pythoncad" - - insinto /etc/"${PN}" - doins prefs.py - domenu pythoncad.desktop - insinto /usr/share/pixmaps - newins gtkpycad.png pythoncad.png -} |