summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Kapusta <ayoy@gentoo.org>2009-10-01 17:08:15 +0000
committerDominik Kapusta <ayoy@gentoo.org>2009-10-01 17:08:15 +0000
commit64d6377dff38e58650b57889ac87726adb4eff9a (patch)
tree9ce21a73a281010e5045c37881802a0adec5e0ed /net-im/qtwitter
parentVersion bump to 0.7. (diff)
downloadgentoo-2-64d6377dff38e58650b57889ac87726adb4eff9a.tar.gz
gentoo-2-64d6377dff38e58650b57889ac87726adb4eff9a.tar.bz2
gentoo-2-64d6377dff38e58650b57889ac87726adb4eff9a.zip
Version bump, remove old 0.9.*
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'net-im/qtwitter')
-rw-r--r--net-im/qtwitter/ChangeLog8
-rw-r--r--net-im/qtwitter/qtwitter-0.9.0.ebuild73
-rw-r--r--net-im/qtwitter/qtwitter-0.9.2.ebuild (renamed from net-im/qtwitter/qtwitter-0.9.1.ebuild)2
3 files changed, 8 insertions, 75 deletions
diff --git a/net-im/qtwitter/ChangeLog b/net-im/qtwitter/ChangeLog
index 48b32d7a562d..0a74e8637fd9 100644
--- a/net-im/qtwitter/ChangeLog
+++ b/net-im/qtwitter/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-im/qtwitter
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/ChangeLog,v 1.16 2009/09/30 19:52:53 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/ChangeLog,v 1.17 2009/10/01 17:08:15 ayoy Exp $
+
+*qtwitter-0.9.2 (01 Oct 2009)
+
+ 01 Oct 2009; Dominik Kapusta <ayoy@gentoo.org> -qtwitter-0.9.0.ebuild,
+ -qtwitter-0.9.1.ebuild, +qtwitter-0.9.2.ebuild:
+ Version bump, remove old 0.9.*
*qtwitter-0.9.1 (30 Sep 2009)
diff --git a/net-im/qtwitter/qtwitter-0.9.0.ebuild b/net-im/qtwitter/qtwitter-0.9.0.ebuild
deleted file mode 100644
index d4738e5afbc7..000000000000
--- a/net-im/qtwitter/qtwitter-0.9.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/qtwitter-0.9.0.ebuild,v 1.2 2009/09/20 07:46:21 ayoy Exp $
-
-EAPI="2"
-
-inherit qt4 eutils
-
-DESCRIPTION="A Qt-based client for Twitter and Identi.ca"
-HOMEPAGE="http://www.qt-apps.org/content/show.php/qTwitter?content=99087"
-SRC_URI="http://files.ayoy.net/qtwitter/release/${PV}/src/${P}-src.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug +oauth"
-
-DEPEND="x11-libs/qt-gui:4
- oauth? ( >=dev-libs/qoauth-1.0 )"
-RDEPEND="${DEPEND}"
-
-QTWITTER_LANGS="pt_BR"
-QTWITTER_NOLONGLANGS="ca_ES cs_CZ de_DE es_ES fr_FR it_IT ja_JP pl_PL"
-
-for L in $QTWITTER_LANGS; do
- IUSE="$IUSE linguas_$L"
-done
-for L in $QTWITTER_NOLONGLANGS; do
- IUSE="$IUSE linguas_${L%_*}"
-done
-
-src_prepare() {
- qt4_src_prepare
- echo "CONFIG += nostrip" >> "${S}"/${PN}.pro
-
- local langs=
- for lingua in $LINGUAS; do
- if has $lingua $QTWITTER_LANGS; then
- langs="$langs loc/${PN}_${lingua}.ts"
- else
- for a in $QTWITTER_NOLONGLANGS; do
- if [[ $lingua == ${a%_*} ]]; then
- langs="$langs loc/${PN}_${a}.ts"
- fi
- done
- fi
- done
-
- # remove translations and add only the selected ones
- sed -i -e '/^ *loc.*\.ts/d' \
- -e "/^TRANSLATIONS/s:loc.*:${langs}:" \
- qtwitter-app/qtwitter-app.pro || die "sed failed"
- # fix unsecure runpaths
- sed -i -e '/-Wl,-rpath,\$\${TOP}/d' \
- qtwitter-app/qtwitter-app.pro || die "sed failed"
-
- sed -i "s!\(\$\${INSTALL_PREFIX}\)/lib!\1/$(get_libdir)!" \
- twitterapi/twitterapi.pro urlshortener/urlshortener.pro || die "sed failed"
-
- if ! use oauth; then
- sed -i '/DEFINES += OAUTH/d' ${PN}.pri || die "sed failed"
- epatch "${FILESDIR}/${P}-no-oauth-fix.patch"
- fi
-}
-
-src_configure() {
- eqmake4
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install || die "emake install failed"
- dodoc README CHANGELOG || die "dodoc failed"
-}
diff --git a/net-im/qtwitter/qtwitter-0.9.1.ebuild b/net-im/qtwitter/qtwitter-0.9.2.ebuild
index fd211d89127a..71032ea1fd0a 100644
--- a/net-im/qtwitter/qtwitter-0.9.1.ebuild
+++ b/net-im/qtwitter/qtwitter-0.9.2.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/net-im/qtwitter/qtwitter-0.9.1.ebuild,v 1.1 2009/09/30 19:52:53 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/qtwitter-0.9.2.ebuild,v 1.1 2009/10/01 17:08:15 ayoy Exp $
EAPI="2"