69 lines
1.7 KiB
Bash
69 lines
1.7 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/wxglade/wxglade-0.6.3-r1.ebuild,v 1.6 2012/09/05 09:49:30 jlec Exp $
|
|
|
|
EAPI="2"
|
|
PYTHON_DEPEND="2:2.5"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
|
|
inherit eutils multilib python
|
|
|
|
MY_P="wxGlade-${PV}"
|
|
|
|
DESCRIPTION="Glade-like GUI designer which can generate Python, Perl, C++ or XRC code"
|
|
HOMEPAGE="http://wxglade.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/wxglade/${MY_P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc sparc x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/wxpython:2.8"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-wxversion.patch
|
|
}
|
|
|
|
src_compile() {
|
|
:
|
|
}
|
|
|
|
src_install() {
|
|
dodoc CHANGES.txt README.txt TODO.txt
|
|
newicon icons/icon.xpm wxglade.xpm || die "installing wxglade.xpm failed"
|
|
doman "${S}"/debian/wxglade.1 || die "installing man failed"
|
|
rm -rf "${S}"/debian
|
|
dohtml -r "${S}"/docs/* || die "installing docs failied"
|
|
rm -rf "${S}"/docs
|
|
|
|
python_copy_sources
|
|
|
|
installation() {
|
|
pydir=$(python_get_sitedir)/${PN}
|
|
insinto "${pydir}"
|
|
doins "${S}"/credits.txt || die "installing credits.txt failed"
|
|
doins -r ./* || die "installing failed"
|
|
dosym /usr/share/doc/${PF}/html "${pydir}"/docs || die "doc symlink failed"
|
|
fperms 775 "${pydir}"/wxglade.py
|
|
dosym "${pydir}"/wxglade.py /usr/bin/wxglade-$(python_get_version) \
|
|
|| die "main symlink failed"
|
|
}
|
|
python_execute_function -s installation
|
|
|
|
python_generate_wrapper_scripts -E -f -q "${D}"usr/bin/wxglade
|
|
|
|
make_desktop_entry wxglade wxGlade wxglade "Development;GUIDesigner"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
python_mod_optimize wxglade
|
|
}
|
|
|
|
pkg_postrm() {
|
|
python_mod_cleanup wxglade
|
|
}
|