diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2009-11-23 00:22:01 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2009-11-23 00:22:01 +0000 |
commit | d269f541a60e38ae4529067fa1870463abaf28a9 (patch) | |
tree | 5e490ad9e501296999186320d6752ac6dc6926d1 /app-dicts | |
parent | Fix bug #286012 also in qemu (diff) | |
download | gentoo-2-d269f541a60e38ae4529067fa1870463abaf28a9.tar.gz gentoo-2-d269f541a60e38ae4529067fa1870463abaf28a9.tar.bz2 gentoo-2-d269f541a60e38ae4529067fa1870463abaf28a9.zip |
Version bump. Require wxpython:2.8. Keyword ~amd64.
(Portage version: 2.2_rc51/cvs/Linux x86_64)
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/opendict/ChangeLog | 9 | ||||
-rw-r--r-- | app-dicts/opendict/opendict-0.6.3.ebuild | 84 |
2 files changed, 91 insertions, 2 deletions
diff --git a/app-dicts/opendict/ChangeLog b/app-dicts/opendict/ChangeLog index 5eb24aa4c320..5c14d0b5a7a2 100644 --- a/app-dicts/opendict/ChangeLog +++ b/app-dicts/opendict/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-dicts/opendict -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/ChangeLog,v 1.16 2008/05/29 15:33:19 hawking Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/ChangeLog,v 1.17 2009/11/23 00:22:01 dirtyepic Exp $ + +*opendict-0.6.3 (23 Nov 2009) + + 23 Nov 2009; Ryan Hill <dirtyepic@gentoo.org> +opendict-0.6.3.ebuild: + Version bump. Require wxpython:2.8. Keyword ~amd64. 29 May 2008; Ali Polatel <hawking@gentoo.org> opendict-0.6.1.ebuild: python_mod_optimize is ROOT aware. Fixed python_mod_cleanup. diff --git a/app-dicts/opendict/opendict-0.6.3.ebuild b/app-dicts/opendict/opendict-0.6.3.ebuild new file mode 100644 index 000000000000..ac8ad7e7ea5c --- /dev/null +++ b/app-dicts/opendict/opendict-0.6.3.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/opendict-0.6.3.ebuild,v 1.1 2009/11/23 00:22:01 dirtyepic Exp $ + +EAPI=2 + +inherit eutils python gnome2 + +DESCRIPTION="OpenDict is a free cross-platform dictionary program." +HOMEPAGE="http://opendict.sourceforge.net/" +SRC_URI="http://opendict.idiles.com/files/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=virtual/python-2.3 + dev-python/wxpython:2.8 + dev-python/pyxml" + +src_prepare() { + #epatch "${FILESDIR}/${PN}-0.6.1-desktop.patch" + sed -e "s:), '..')):), '../../../../..', 'share', 'opendict')):g" \ + -i "${S}/lib/info.py" +} + +src_configure() { + : +} + +src_compile() { + : +} + +src_install() { + python_version + DHOME="/usr/lib/python${PYVER}/site-packages/opendict" + + dodir /usr/share/${PN}/dictionaries/plugins # global dictionary plugins folder + + # Needed by GUI + insinto /usr/share/${PN} + doins "${S}"/copying.html + + insinto "${DHOME}/lib" + doins -r "${S}"/lib/* + + insinto /usr/share/${PN}/pixmaps + doins "${S}"/pixmaps/* + + exeinto "${DHOME}" + doexe opendict.py + + dosym "${DHOME}/opendict.py" /usr/bin/opendict + + domenu misc/${PN}.desktop + + insinto /usr/share/icons/hicolor/24x24/apps/ + newins "${S}/pixmaps/icon-24x24.png" opendict.png + insinto /usr/share/icons/hicolor/32x32/apps/ + newins "${S}/pixmaps/icon-32x32.png" opendict.png + insinto /usr/share/icons/hicolor/48x48/apps/ + newins "${S}/pixmaps/icon-48x48.png" opendict.png + insinto /usr/share/icons/hicolor/scalable/apps/ + newins "${S}/pixmaps/SVG/icon-rune.svg" opendict.svg + + doman opendict.1 + dodoc README.txt TODO.txt doc/Plugin-HOWTO.html +} + +pkg_postinst() { + python_mod_optimize \ + /usr/$(get_libdir)/python${PYVER}/site-packages/opendict + gnome2_icon_cache_update + + elog "If you want system-wide plugins, unzip them into" + elog "${ROOT}usr/share/${PN}/dictionaries/plugins" + elog "Some are available from http://opendict.sourceforge.net/?cid=3" +} + +pkg_postrm() { + python_mod_cleanup + gnome2_icon_cache_update +} |