You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-mathematics/relational/relational-0.11.ebuild

52 lines
1021 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="3"
PYTHON_DEPEND="2"
inherit python eutils
DESCRIPTION="Qt4 relational algebra application"
HOMEPAGE="http://galileo.dmi.unict.it/wiki/relational/"
# upstream url is not static
SRC_URI="mirror://gentoo/${P}.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
python_pkg_setup
}
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
}