diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2007-09-29 01:22:36 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2007-09-29 01:22:36 +0000 |
commit | d28398926b673dc17d147be244670c8503208e88 (patch) | |
tree | af83636c2aa1f1d5d48cf8458431d8d409fb18fd /dev-util/boa-constructor | |
parent | Stable on mips, per #194007. (diff) | |
download | gentoo-2-d28398926b673dc17d147be244670c8503208e88.tar.gz gentoo-2-d28398926b673dc17d147be244670c8503208e88.tar.bz2 gentoo-2-d28398926b673dc17d147be244670c8503208e88.zip |
Version bump. Bug #114252.
(Portage version: 2.1.3.9)
Diffstat (limited to 'dev-util/boa-constructor')
-rw-r--r-- | dev-util/boa-constructor/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/boa-constructor/boa-constructor-0.6.1.ebuild | 58 | ||||
-rw-r--r-- | dev-util/boa-constructor/files/digest-boa-constructor-0.6.1 | 3 |
3 files changed, 68 insertions, 1 deletions
diff --git a/dev-util/boa-constructor/ChangeLog b/dev-util/boa-constructor/ChangeLog index b502e6c7d07c..28a23ad4def5 100644 --- a/dev-util/boa-constructor/ChangeLog +++ b/dev-util/boa-constructor/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/boa-constructor # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/ChangeLog,v 1.27 2007/02/03 21:35:13 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/ChangeLog,v 1.28 2007/09/29 01:22:35 dirtyepic Exp $ + +*boa-constructor-0.6.1 (29 Sep 2007) + + 29 Sep 2007; Ryan Hill <dirtyepic@gentoo.org> + +boa-constructor-0.6.1.ebuild: + Version bump. Bug #114252. 03 Feb 2007; Ryan Hill <dirtyepic@gentoo.org> -boa-constructor-0.3.0_alpha.ebuild, -boa-constructor-0.3.1_alpha.ebuild: diff --git a/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild b/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild new file mode 100644 index 000000000000..dad16c495208 --- /dev/null +++ b/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/boa-constructor/boa-constructor-0.6.1.ebuild,v 1.1 2007/09/29 01:22:35 dirtyepic Exp $ + +inherit eutils python + +DESCRIPTION="Python GUI RAD development tool." +HOMEPAGE="http://boa-constructor.sourceforge.net/" +SRC_URI="mirror://sourceforge/boa-constructor/${P}.src.zip" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="=dev-python/wxpython-2.6* + dev-libs/expat" + +DEPEND="${RDEPEND} + app-arch/unzip" + +src_compile() { + python -c "import compileall; compileall.compile_dir('.', force=1)" +} + +src_install() { + python_version + local boadir="/usr/lib/python${PYVER}/site-packages/boa" + + local dir + for dir in $(find . -type d) + do + insinto "${boadir}/${dir}" + cd "${dir}" + local file + for file in * + do + [[ -f "${file}" ]] && doins "${file}" + done + cd "${S}" + done + + insinto "${boadir}" + insinto "${boadir}/Plug-ins" + doins Plug-ins/* + + dobin "${FILESDIR}/boa-constructor" + + dodoc Bugs.txt Changes.txt Credits.txt README.txt +} + +pkg_postinst() { + python_mod_optimize +} + +pkg_postrm() { + python_mod_cleanup +} diff --git a/dev-util/boa-constructor/files/digest-boa-constructor-0.6.1 b/dev-util/boa-constructor/files/digest-boa-constructor-0.6.1 new file mode 100644 index 000000000000..6758040fd537 --- /dev/null +++ b/dev-util/boa-constructor/files/digest-boa-constructor-0.6.1 @@ -0,0 +1,3 @@ +MD5 150d923c608a405eeb17bf655ce26b14 boa-constructor-0.6.1.src.zip 13782538 +RMD160 d40453f04a1449119ec22684f0882135d82222ba boa-constructor-0.6.1.src.zip 13782538 +SHA256 7ba97ca73472ac24a1b220594003c198ff32c1750274cdc123bfe3b341f43b58 boa-constructor-0.6.1.src.zip 13782538 |