diff options
author | Johannes Huber <johu@gentoo.org> | 2012-03-25 19:16:22 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-03-25 19:16:22 +0000 |
commit | 04243305ea36f9fa98bfce2ec33455f73ab0b8a9 (patch) | |
tree | 6ca7ea33d57167c37e852b2224927f961b10ec1c /net-im/qtwitter | |
parent | Remove old. (diff) | |
download | gentoo-2-04243305ea36f9fa98bfce2ec33455f73ab0b8a9.tar.gz gentoo-2-04243305ea36f9fa98bfce2ec33455f73ab0b8a9.tar.bz2 gentoo-2-04243305ea36f9fa98bfce2ec33455f73ab0b8a9.zip |
Remove old.
(Portage version: 2.2.0_alpha95/cvs/Linux i686)
Diffstat (limited to 'net-im/qtwitter')
-rw-r--r-- | net-im/qtwitter/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/qtwitter/qtwitter-0.9.2.ebuild | 69 |
2 files changed, 5 insertions, 71 deletions
diff --git a/net-im/qtwitter/ChangeLog b/net-im/qtwitter/ChangeLog index b4443d7005b0..ffbfd37f1468 100644 --- a/net-im/qtwitter/ChangeLog +++ b/net-im/qtwitter/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/qtwitter -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/ChangeLog,v 1.25 2011/09/13 19:15:32 pacho Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/ChangeLog,v 1.26 2012/03/25 19:16:22 johu Exp $ + + 25 Mar 2012; Johannes Huber <johu@gentoo.org> -qtwitter-0.9.2.ebuild: + Remove old. 13 Sep 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, bug #278944 diff --git a/net-im/qtwitter/qtwitter-0.9.2.ebuild b/net-im/qtwitter/qtwitter-0.9.2.ebuild deleted file mode 100644 index d6fc7558b14c..000000000000 --- a/net-im/qtwitter/qtwitter-0.9.2.ebuild +++ /dev/null @@ -1,69 +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.2.ebuild,v 1.2 2009/11/02 21:26:28 maekke Exp $ - -EAPI="2" - -inherit qt4 - -DESCRIPTION="A Qt-based microblogging client" -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" - -DEPEND=">=x11-libs/qt-gui-4.5:4 - >=x11-libs/qt-dbus-4.5:4 - >=dev-libs/qoauth-1.0" -RDEPEND="${DEPEND}" - -QTWITTER_LANGS="nb_NO 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 insecure 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" -} - -src_configure() { - eqmake4 -} - -src_install() { - emake INSTALL_ROOT="${D}" install || die "emake install failed" - dodoc README CHANGELOG || die "dodoc failed" -} |