diff options
author | 2011-04-12 17:42:40 +0000 | |
---|---|---|
committer | 2011-04-12 17:42:40 +0000 | |
commit | 181bd480702983f65f221ea1e1e003a39b38e522 (patch) | |
tree | c670cfda825b7c1a37deddbde0a47f6dd93093f1 /sci-mathematics/relational | |
parent | Version bump #363323 by Sebastian Pipping. (diff) | |
download | gentoo-2-181bd480702983f65f221ea1e1e003a39b38e522.tar.gz gentoo-2-181bd480702983f65f221ea1e1e003a39b38e522.tar.bz2 gentoo-2-181bd480702983f65f221ea1e1e003a39b38e522.zip |
Delete older ebuild.
Diffstat (limited to 'sci-mathematics/relational')
-rw-r--r-- | sci-mathematics/relational/relational-0.10.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/sci-mathematics/relational/relational-0.10.ebuild b/sci-mathematics/relational/relational-0.10.ebuild deleted file mode 100644 index 1d8e1d9a437b..000000000000 --- a/sci-mathematics/relational/relational-0.10.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild,v 1.4 2010/04/30 10:57:16 hwoarang Exp $ - -EAPI="3" -PYTHON_DEPEND="2" - -inherit python distutils eutils - -DESCRIPTION="Qt4 relational algebra application" -HOMEPAGE="http://galileo.dmi.unict.it/wiki/relational/" -# upstream url is not static -SRC_URI="http://dev.gentooexperimental.org/~hwoarang/distfiles/${PN}_${PV}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -DEPEND="dev-python/PyQt4[webkit,X] - media-fonts/dejavu" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}" - -pkg_setup() { - python_set_active_version 2 -} - -src_compile() { - true -} - -src_install() { - insinto "$(python_get_sitedir)/" - doins -r "${PN}_gui" || die "doins failed" - doins -r "${PN}" || die "doins failed" - newbin ${PN}_gui.py ${PN} || die "dobin failed" - domenu ${PN}.desktop || die "domenu failed" - dodoc CHANGELOG CREDITS README || die "dodoc failed" - doman ${PN}.1 || die "doman failed" -} - -pkg_postinst() { - python_mod_optimize ${PN} ${PN}_gui -} - -pkg_postrm() { - python_mod_cleanup ${PN} ${PN}_gui -} |