diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-05-09 16:48:37 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-05-09 16:48:37 +0000 |
commit | b20ee53538ba4cc8226d753eaa2322228a12e196 (patch) | |
tree | 41b86998bd4f38075ad9781e929361194edb0e65 /dev-util/eric | |
parent | Keyworded on alpha, bug #268645 (diff) | |
download | gentoo-2-b20ee53538ba4cc8226d753eaa2322228a12e196.tar.gz gentoo-2-b20ee53538ba4cc8226d753eaa2322228a12e196.tar.bz2 gentoo-2-b20ee53538ba4cc8226d753eaa2322228a12e196.zip |
Bump to 4.3.3, homepage changed again
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/eric')
-rw-r--r-- | dev-util/eric/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/eric/eric-4.3.3.ebuild | 77 |
2 files changed, 84 insertions, 2 deletions
diff --git a/dev-util/eric/ChangeLog b/dev-util/eric/ChangeLog index e68c9603e104..e3377eb58a03 100644 --- a/dev-util/eric/ChangeLog +++ b/dev-util/eric/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/eric -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.80 2009/05/03 16:39:55 armin76 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.81 2009/05/09 16:48:37 patrick Exp $ + +*eric-4.3.3 (09 May 2009) + + 09 May 2009; Patrick Lauer <patrick@gentoo.org> +eric-4.3.3.ebuild: + Bump to 4.3.3, homepage changed again 03 May 2009; Raúl Porcel <armin76@gentoo.org> eric-4.3.1.ebuild: sparc stable wrt #267331 diff --git a/dev-util/eric/eric-4.3.3.ebuild b/dev-util/eric/eric-4.3.3.ebuild new file mode 100644 index 000000000000..ebbe400b92e1 --- /dev/null +++ b/dev-util/eric/eric-4.3.3.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.3.3.ebuild,v 1.1 2009/05/09 16:48:37 patrick Exp $ + +EAPI="2" + +NEED_PYTHON=2.4 + +inherit python eutils + +MY_PN=${PN}4 +MY_P=${MY_PN}-${PV} +DESCRIPTION="A full featured Python IDE that is written in PyQt4 using the QScintilla editor widget" +HOMEPAGE="http://eric-ide.python-projects.org/index.html" +SRC_URI="mirror://sourceforge/eric-ide/${MY_P}.tar.gz + linguas_cs? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-cs-${PV}.tar.gz ) + linguas_de? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-de-${PV}.tar.gz ) + linguas_es? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-es-${PV}.tar.gz ) + linguas_fr? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-fr-${PV}.tar.gz ) + linguas_ru? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-ru-${PV}.tar.gz ) + linguas_tr? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-tr-${PV}.tar.gz ) + linguas_zh_CN? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-zh_CN.GB2312-${PV}.tar.gz )" + +SLOT="4" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="linguas_cs linguas_de linguas_es linguas_fr linguas_ru linguas_tr" + +DEPEND="dev-python/PyQt4[svg] + >=dev-python/qscintilla-python-2.2[qt4]" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +LANGS="cs de es fr ru tr" + +python_version + +src_prepare() { + #epatch "${FILESDIR}"/4.3.0-paths.patch + epatch "${FILESDIR}"/4.2.3-no-interactive.patch +} + +src_install() { + # Change qt dir to be located in ${D} + dodir /usr/share/qt4/ + ${python} install.py \ + -z \ + -b "/usr/bin" \ + -i "${D}" \ + -d "/usr/$(get_libdir)/python${PYVER}/site-packages" \ + -c || die "python install.py failed" + + make_desktop_entry "eric4 --nosplash" \ + eric4 \ + "/usr/$(get_libdir)/python${PYVER}/site-packages/eric4/icons/default/eric.png" \ + "Development;IDE;Qt" +} + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/eric4{,plugins} + elog "If you want to use eric4 with mod_python, have a look at" + elog "\"${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/eric4/patch_modpython.py\"." + elog + elog "The following packages will give eric extended functionality." + elog + elog "dev-python/pylint" + elog "dev-python/pysvn (in sunrise overlay atm)" + elog + elog "This version has a new plugin interface with plugin-autofetch from" + elog "the App itself. You may want to check those as well" +} + +pkg_postrm() { + python_mod_cleanup +} |