diff options
author | Ben de Groot <yngwin@gentoo.org> | 2009-05-10 14:40:09 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2009-05-10 14:40:09 +0000 |
commit | d788982444d0e51c8f304b51df1b4de934258cf1 (patch) | |
tree | b04871a35fb8e76577d8e8ab67cd862d908fc34e /www-client/arora | |
parent | Remove deprecated libghttp support wrt #244128 (diff) | |
download | gentoo-2-d788982444d0e51c8f304b51df1b4de934258cf1.tar.gz gentoo-2-d788982444d0e51c8f304b51df1b4de934258cf1.tar.bz2 gentoo-2-d788982444d0e51c8f304b51df1b4de934258cf1.zip |
Drop old versions, add qt-sql dep, fixes bug 269157
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'www-client/arora')
-rw-r--r-- | www-client/arora/ChangeLog | 6 | ||||
-rw-r--r-- | www-client/arora/arora-0.5.ebuild | 66 | ||||
-rw-r--r-- | www-client/arora/arora-0.6-r1.ebuild | 66 | ||||
-rw-r--r-- | www-client/arora/arora-0.6.1.ebuild | 6 |
4 files changed, 9 insertions, 135 deletions
diff --git a/www-client/arora/ChangeLog b/www-client/arora/ChangeLog index 58ab821ecec0..c72fe3fe23de 100644 --- a/www-client/arora/ChangeLog +++ b/www-client/arora/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/arora # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v 1.13 2009/05/08 13:35:34 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v 1.14 2009/05/10 14:40:09 yngwin Exp $ + + 10 May 2009; Ben de Groot <yngwin@gentoo.org> -arora-0.5.ebuild, + -arora-0.6-r1.ebuild, arora-0.6.1.ebuild: + Drop old versions, add qt-sql dep, fixes bug 269157 *arora-0.6.1 (08 May 2009) diff --git a/www-client/arora/arora-0.5.ebuild b/www-client/arora/arora-0.5.ebuild deleted file mode 100644 index 315fb3ec80d3..000000000000 --- a/www-client/arora/arora-0.5.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.5.ebuild,v 1.1 2009/02/21 10:35:32 yngwin Exp $ - -EAPI=2 -inherit eutils qt4 - -DESCRIPTION="A cross-platform Qt4 WebKit browser" -HOMEPAGE="http://arora.googlecode.com/" -SRC_URI="http://arora.googlecode.com/files/${P}.tar.gz" - -LICENSE="|| ( GPL-3 GPL-2 )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -RDEPEND="x11-libs/qt-webkit:4" -DEPEND="$RDEPEND" - -ARORA_LANGS="en_US es es_CR et_EE fr_CA gl ms nb_NO uk zh_CN" -ARORA_NOLONGLANGS="cs_CZ da_DK de_DE fr_FR he_IL hu_HU it_IT ja_JP nl_NL pl_PL - ru_RU sk_SK tr_TR" - -for L in $ARORA_LANGS; do - IUSE="$IUSE linguas_$L" -done -for L in $ARORA_NOLONGLANGS; do - IUSE="$IUSE linguas_${L%_*}" -done - -src_prepare() { - # process linguas - local langs= - for lingua in $LINGUAS; do - if has $lingua $ARORA_LANGS; then - langs="$langs ${lingua}.ts" - else - for a in $ARORA_NOLONGLANGS; do - if [[ $lingua == ${a%_*} ]]; then - langs="$langs ${a}.ts" - fi - done - fi - done - - # remove all translations, then add only the ones we want - sed -i '/ts/d' src/locale/locale.pri || die 'sed failed' - sed -i "/^TRANSLATIONS/s:\\\:${langs}:" src/locale/locale.pri \ - || die 'sed failed' -} - -src_configure() { - eqmake4 arora.pro PREFIX="${D}/usr" -} - -src_compile() { - emake || die "make failed" - - # don't pre-strip - sed -i "/strip/d" src/Makefile || die 'sed failed' -} - -src_install() { - emake -j1 DESTDIR="${D}" install || die 'make install failed' - dodoc AUTHORS ChangeLog README -} diff --git a/www-client/arora/arora-0.6-r1.ebuild b/www-client/arora/arora-0.6-r1.ebuild deleted file mode 100644 index ea9ceac803d7..000000000000 --- a/www-client/arora/arora-0.6-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.6-r1.ebuild,v 1.1 2009/04/05 20:25:17 yngwin Exp $ - -EAPI=2 -inherit eutils qt4 - -DESCRIPTION="A cross-platform Qt4 WebKit browser" -HOMEPAGE="http://arora.googlecode.com/" -SRC_URI="http://arora.googlecode.com/files/${P}.tar.gz" - -LICENSE="|| ( GPL-3 GPL-2 )" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -RDEPEND="x11-libs/qt-webkit:4" -DEPEND="$RDEPEND" - -ARORA_LANGS="es es_CR et_EE fr_CA gl ms nb_NO uk zh_CN" -ARORA_NOLONGLANGS="cs_CZ da_DK de_DE fr_FR he_IL hu_HU it_IT ja_JP nl_NL pl_PL - ru_RU sk_SK tr_TR" - -for L in $ARORA_LANGS; do - IUSE="$IUSE linguas_$L" -done -for L in $ARORA_NOLONGLANGS; do - IUSE="$IUSE linguas_${L%_*}" -done - -src_prepare() { - # process linguas - local langs= - for lingua in $LINGUAS; do - if has $lingua $ARORA_LANGS; then - langs="$langs ${lingua}.ts" - else - for a in $ARORA_NOLONGLANGS; do - if [[ $lingua == ${a%_*} ]]; then - langs="$langs ${a}.ts" - fi - done - fi - done - - # remove all translations, then add only the ones we want - sed -i '/ts/d' src/locale/locale.pri || die 'sed failed' - sed -i "/^TRANSLATIONS/s:\\\:${langs}:" src/locale/locale.pri \ - || die 'sed failed' -} - -src_configure() { - eqmake4 arora.pro PREFIX=/usr -} - -src_compile() { - emake || die "make failed" - - # don't pre-strip - sed -i "/strip/d" src/Makefile || die 'sed failed' -} - -src_install() { - emake -j1 INSTALL_ROOT="${D}" install || die 'make install failed' - dodoc AUTHORS ChangeLog README -} diff --git a/www-client/arora/arora-0.6.1.ebuild b/www-client/arora/arora-0.6.1.ebuild index ffaddc1fed3a..52d7cf9483cc 100644 --- a/www-client/arora/arora-0.6.1.ebuild +++ b/www-client/arora/arora-0.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.6.1.ebuild,v 1.1 2009/05/08 13:35:34 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.6.1.ebuild,v 1.2 2009/05/10 14:40:09 yngwin Exp $ EAPI=2 inherit eutils qt4 @@ -14,7 +14,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug" -RDEPEND="x11-libs/qt-webkit:4" +RDEPEND="x11-libs/qt-gui + x11-libs/qt-sql + x11-libs/qt-webkit" DEPEND="$RDEPEND" ARORA_LANGS="es es_CR et_EE fr_CA gl ms nb_NO uk zh_CN" |