diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-04-13 00:19:55 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-04-13 00:19:55 +0000 |
commit | cc236a6b7fca3ccfc5bcf4ee9fe71e068e63010f (patch) | |
tree | f78a91653974f846cc9e0446f1886fbb74617f68 /app-dicts | |
parent | Remove old. (diff) | |
download | gentoo-2-cc236a6b7fca3ccfc5bcf4ee9fe71e068e63010f.tar.gz gentoo-2-cc236a6b7fca3ccfc5bcf4ee9fe71e068e63010f.tar.bz2 gentoo-2-cc236a6b7fca3ccfc5bcf4ee9fe71e068e63010f.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/opendict/ChangeLog | 5 | ||||
-rw-r--r-- | app-dicts/opendict/opendict-0.6.3.ebuild | 93 |
2 files changed, 4 insertions, 94 deletions
diff --git a/app-dicts/opendict/ChangeLog b/app-dicts/opendict/ChangeLog index ab95c4bc962e..f48b2ae095b2 100644 --- a/app-dicts/opendict/ChangeLog +++ b/app-dicts/opendict/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-dicts/opendict # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/ChangeLog,v 1.32 2015/03/02 09:20:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/ChangeLog,v 1.33 2015/04/13 00:19:55 mrueg Exp $ + + 13 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -opendict-0.6.3.ebuild: + Remove old. 02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> opendict-0.6.3-r1.ebuild: Stable for ppc, wrt bug #531460 diff --git a/app-dicts/opendict/opendict-0.6.3.ebuild b/app-dicts/opendict/opendict-0.6.3.ebuild deleted file mode 100644 index 9e2bc2a9a9ab..000000000000 --- a/app-dicts/opendict/opendict-0.6.3.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2014 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.10 2014/08/10 02:33:07 patrick Exp $ - -EAPI=3 -PYTHON_DEPEND=2 - -inherit eutils gnome2 python - -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="dev-python/wxpython:2.8" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-pyxml.patch - - sed -e "s:), '..')):), '../../../../..', 'share', 'opendict')):g" \ - -i "${S}/lib/info.py" -} - -src_configure() { - # override gnome2_src_configure - default -} - -src_compile() { - # evil makefile - : -} - -src_install() { - # makefile is broken, do it manually - - dodir /usr/share/${PN}/dictionaries/plugins # global dictionary plugins folder - - # Needed by GUI - insinto /usr/share/${PN} - doins "${S}"/copying.html - - insinto /usr/share/${PN}/pixmaps - doins "${S}"/pixmaps/* - - DHOME="$(python_get_sitedir)/opendict" - insinto "${DHOME}/lib" - doins -r "${S}"/lib/* - exeinto "${DHOME}" - python_convert_shebangs 2 opendict.py - 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 opendict - gnome2_icon_cache_update - - echo - elog "If you want system-wide plugins, unzip them into" - elog "${ROOT}usr/share/${PN}/dictionaries/plugins" - elog - elog "Some are available from http://opendict.sourceforge.net/?cid=3" - echo -} - -pkg_postrm() { - python_mod_cleanup opendict - gnome2_icon_cache_update -} |