summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-06-18 14:33:46 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2017-06-18 14:38:34 +0200
commitdd2776e16ec4ffc5a598563a2b8364e3d1829bc8 (patch)
treeb2d4c4a64a0c1630ffab6f7e39086fac4828717f /net-im
parentnet-im/vacuum: 1.2.5 version bump, drop USE=adiummessagestyle (diff)
downloadgentoo-dd2776e16ec4ffc5a598563a2b8364e3d1829bc8.tar.gz
gentoo-dd2776e16ec4ffc5a598563a2b8364e3d1829bc8.tar.bz2
gentoo-dd2776e16ec4ffc5a598563a2b8364e3d1829bc8.zip
net-im/vacuum: Drop old
Gentoo-bug: 620724 Package-Manager: Portage-2.3.5, Repoman-2.3.1
Diffstat (limited to 'net-im')
-rw-r--r--net-im/vacuum/Manifest1
-rw-r--r--net-im/vacuum/vacuum-1.2.4.ebuild81
2 files changed, 0 insertions, 82 deletions
diff --git a/net-im/vacuum/Manifest b/net-im/vacuum/Manifest
index e73dfac41805..98eda3111c65 100644
--- a/net-im/vacuum/Manifest
+++ b/net-im/vacuum/Manifest
@@ -1,2 +1 @@
-DIST vacuum-1.2.4.tar.xz 1617896 SHA256 3926df88b6c4c3f93453ed7cbf8d8030aaa3e9a4afe3b5a82d497cdd207ef1ce SHA512 7129ff00e0b13fb5e892540c14925bfbc27b7ad826990eda1aaa5dd0b772dfb1f734b5a5f978c42700273366b7ca0f75c2c79ab94e2ae538793e08dbd80ffd34 WHIRLPOOL aa14783f1dc739fb9f521175cac80ffab2bd2bbc8fd7b57aebfe83c87a535fab930e2bc896f7fad914915e1de54bb6dd437d44a9adb9fb6ba7debc28e397730f
DIST vacuum-1.2.5.tar.gz 2242073 SHA256 3237933f68884fb5b3422ad0fc97083b40a7aae9d8c105a23720c09599ffe5da SHA512 85e36ed312beb59b667f376d45511f3c9414ba8165746cc1da15992eac4716995aa01da505a2f2dd58c8d64822f25c9106691be26a534e01a21f0201049300fc WHIRLPOOL 474930024e8a3a7d501f4dc48ec0919c2dfc73021fb4fee589de5a9986f3598442dbc74bb08d8364223f8c637fb68341cd3b859864afff4c9bc7c8bcdcd05ff5
diff --git a/net-im/vacuum/vacuum-1.2.4.ebuild b/net-im/vacuum/vacuum-1.2.4.ebuild
deleted file mode 100644
index 1c63b62b85e3..000000000000
--- a/net-im/vacuum/vacuum-1.2.4.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-LANGS="de pl ru uk"
-
-inherit cmake-utils
-
-DESCRIPTION="Qt4 Crossplatform Jabber client"
-HOMEPAGE="https://code.google.com/p/vacuum-im"
-SRC_URI="https://googledrive.com/host/0B7A5K_290X8-NE5nLUx5Yl9BTkk/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0/1.17" # subslot = libvacuumutils soname version
-KEYWORDS="~amd64 ~x86"
-PLUGINS=" adiummessagestyle annotations autostatus avatars birthdayreminder bitsofbinary bookmarks captchaforms chatstates clientinfo commands compress console dataforms datastreamsmanager emoticons filemessagearchive filestreamsmanager filetransfer gateways inbandstreams iqauth jabbersearch messagearchiver multiuserchat pepmanager privacylists privatestorage registration remotecontrol rosteritemexchange rostersearch servermessagearchive servicediscovery sessionnegotiation shortcutmanager socksstreams urlprocessor vcard xmppuriqueries"
-IUSE="${PLUGINS// / +}"
-for x in ${LANGS}; do
- IUSE+=" linguas_${x}"
-done
-
-REQUIRED_USE="
- annotations? ( privatestorage )
- avatars? ( vcard )
- birthdayreminder? ( vcard )
- bookmarks? ( privatestorage )
- captchaforms? ( dataforms )
- commands? ( dataforms )
- datastreamsmanager? ( dataforms )
- filemessagearchive? ( messagearchiver )
- filestreamsmanager? ( datastreamsmanager )
- filetransfer? ( filestreamsmanager datastreamsmanager )
- pepmanager? ( servicediscovery )
- registration? ( dataforms )
- remotecontrol? ( commands dataforms )
- servermessagearchive? ( messagearchiver )
- sessionnegotiation? ( dataforms )
-"
-
-RDEPEND="
- dev-qt/qtcore:4[ssl]
- dev-qt/qtgui:4
- dev-qt/qtlockedfile[qt4(+)]
- dev-libs/openssl:0
- adiummessagestyle? ( dev-qt/qtwebkit:4 )
- net-dns/libidn
- x11-libs/libXScrnSaver
- sys-libs/zlib[minizip]
-"
-DEPEND="${RDEPEND}"
-
-DOCS="AUTHORS CHANGELOG README TRANSLATORS"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc6-not-string-literals.patch
-
- # Force usage of system libraries
- rm -rf src/thirdparty/{idn,minizip,zlib}
-}
-
-src_configure() {
- # linguas
- local langs="none;" x
- for x in ${LANGS}; do
- use linguas_${x} && langs+="${x};"
- done
-
- local mycmakeargs=(
- -DINSTALL_LIB_DIR="$(get_libdir)"
- -DINSTALL_SDK=ON
- -DLANGS="${langs}"
- -DINSTALL_DOCS=OFF
- -DFORCE_BUNDLED_MINIZIP=OFF
- )
-
- for x in ${PLUGINS}; do
- mycmakeargs+=( "$(cmake-utils_use ${x} PLUGIN_${x})" )
- done
-
- cmake-utils_src_configure
-}