* [gentoo-commits] gentoo-x86 commit in net-im/kadu: ChangeLog kadu-0.10.0.ebuild
@ 2011-09-29 20:37 Maciej Mrozowski (reavertm)
0 siblings, 0 replies; only message in thread
From: Maciej Mrozowski (reavertm) @ 2011-09-29 20:37 UTC (permalink / raw
To: gentoo-commits
reavertm 11/09/29 20:37:27
Modified: ChangeLog
Added: kadu-0.10.0.ebuild
Log:
Version bump, bug 382259
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Revision Changes Path
1.109 net-im/kadu/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/ChangeLog?r1=1.108&r2=1.109
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog 17 Jul 2011 17:39:15 -0000 1.108
+++ ChangeLog 29 Sep 2011 20:37:27 -0000 1.109
@@ -1,6 +1,12 @@
# ChangeLog for net-im/kadu
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v 1.108 2011/07/17 17:39:15 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/ChangeLog,v 1.109 2011/09/29 20:37:27 reavertm Exp $
+
+*kadu-0.10.0 (29 Sep 2011)
+
+ 29 Sep 2011; Maciej Mrozowski <reavertm@gentoo.org> +kadu-0.10.0.ebuild,
+ +files/kadu-0.10.0-cmake.patch:
+ Version bump, bug 382259
17 Jul 2011; Maciej Mrozowski <reavertm@gentoo.org> -kadu-0.9.1-r1.ebuild,
kadu-0.9.2.ebuild:
1.1 net-im/kadu/kadu-0.10.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/kadu-0.10.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/kadu/kadu-0.10.0.ebuild?rev=1.1&content-type=text/plain
Index: kadu-0.10.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/kadu/kadu-0.10.0.ebuild,v 1.1 2011/09/29 20:37:27 reavertm Exp $
EAPI="4"
inherit base cmake-utils flag-o-matic
MY_P="${P/_/-}"
DESCRIPTION="An open source Gadu-Gadu and Jabber/XMPP protocol Instant Messenger client."
HOMEPAGE="http://www.kadu.net"
SRC_URI="http://download.kadu.im/stable/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE="+gadu kde phonon speech spell +ssl xmpp"
REQUIRED_USE="
|| (
gadu
xmpp
)
"
COMMON_DEPEND="
>=app-crypt/qca-2.0.0-r2
>=media-libs/libsndfile-1.0
>=net-libs/libgadu-1.11.0[threads]
x11-libs/libXfixes
x11-libs/libXScrnSaver
>=x11-libs/qt-dbus-4.4:4
>=x11-libs/qt-gui-4.4:4[qt3support]
>=x11-libs/qt-script-4.4:4
>=x11-libs/qt-sql-4.4:4[sqlite]
>=x11-libs/qt-svg-4.4:4
>=x11-libs/qt-webkit-4.4:4
gadu? ( >=x11-libs/qt-xmlpatterns-4.4:4 )
kde? ( >=kde-base/kdelibs-4.3.3 )
phonon? (
!kde? (
|| (
>=x11-libs/qt-phonon-4.4:4
media-libs/phonon
)
)
kde? ( media-libs/phonon )
)
spell? ( app-text/enchant )
xmpp? ( net-dns/libidn )
"
DEPEND="${COMMON_DEPEND}
xmpp? ( dev-util/automoc )
x11-proto/fixesproto
x11-proto/scrnsaverproto
"
RDEPEND="${COMMON_DEPEND}
speech? ( app-accessibility/powiedz )
ssl? ( app-crypt/qca-ossl:2 )
"
PATCHES=(
"${FILESDIR}/${P}-cmake.patch"
)
PLUGINS='amarok1_mediaplayer antistring auto_hide autoaway autoresponder
autostatus cenzor chat_notify config_wizard desktop_docking docking exec_notify
ext_sound falf_mediaplayer filedesc firewall freedesktop_notify hints history
idle imagelink last_seen mediaplayer mprisplayer_mediaplayer pcspeaker qt4_docking
qt4_docking_notify screenshot simpleview single_window sms sound sql_history tabs
word_fix'
src_configure() {
# Filter out dangerous flags
filter-flags -fno-rtti
strip-unsupported-flags
# Ensure -DQT_NO_DEBUG is added
append-cppflags -DQT_NO_DEBUG
# Plugin selection
if use gadu; then
PLUGINS+=' gadu_protocol history_migration profiles_import'
fi
use xmpp && PLUGINS+=' jabber_protocol'
use phonon && PLUGINS+=' phonon_sound'
use speech && PLUGINS+=' speech'
use spell && PLUGINS+=' spellchecker'
if use ssl; then
PLUGINS+=' encryption_ng encryption_ng_simlite'
fi
# COMPILE_PLUGINS isn't the most flexible..
local compile_plugins=
for plugin in ${PLUGINS}; do
[[ -n ${compile_plugins} ]] && compile_plugins+=','
compile_plugins+="${plugin}"
done
unset PLUGINS
# Configure package
local mycmakeargs=(
-DBUILD_DESCRIPTION='Gentoo Linux'
-DCOMPILE_PLUGINS="${compile_plugins}"
$(cmake-utils_use_with spell ENCHANT)
)
unset compile_plugins
cmake-utils_src_configure
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-09-29 20:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-29 20:37 [gentoo-commits] gentoo-x86 commit in net-im/kadu: ChangeLog kadu-0.10.0.ebuild Maciej Mrozowski (reavertm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox