* [gentoo-commits] gentoo-x86 commit in net-im/licq: ChangeLog licq-1.3.6.ebuild licq-1.3.2-r1.ebuild licq-1.3.4-r1.ebuild licq-1.3.2.ebuild licq-1.3.5.ebuild
@ 2008-10-29 16:13 Olivier Crete (tester)
0 siblings, 0 replies; only message in thread
From: Olivier Crete (tester) @ 2008-10-29 16:13 UTC (permalink / raw
To: gentoo-commits
tester 08/10/29 16:13:13
Modified: ChangeLog
Added: licq-1.3.6.ebuild
Removed: licq-1.3.2-r1.ebuild licq-1.3.4-r1.ebuild
licq-1.3.2.ebuild licq-1.3.5.ebuild
Log:
Version bump, bug #237816, remove old
(Portage version: 2.1.4.5)
Revision Changes Path
1.99 net-im/licq/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/licq/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/licq/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/licq/ChangeLog?r1=1.98&r2=1.99
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog 5 Jul 2008 16:48:39 -0000 1.98
+++ ChangeLog 29 Oct 2008 16:13:13 -0000 1.99
@@ -1,6 +1,13 @@
# ChangeLog for net-im/licq
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.98 2008/07/05 16:48:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/licq/ChangeLog,v 1.99 2008/10/29 16:13:13 tester Exp $
+
+*licq-1.3.6 (29 Oct 2008)
+
+ 29 Oct 2008; Olivier Crête <tester@gentoo.org> -licq-1.3.2.ebuild,
+ -licq-1.3.2-r1.ebuild, -licq-1.3.4-r1.ebuild, -licq-1.3.5.ebuild,
+ +licq-1.3.6.ebuild:
+ Version bump, bug #237816, remove old
05 Jul 2008; Raúl Porcel <armin76@gentoo.org> licq-1.3.5-r1.ebuild:
alpha/ia64/sparc stable wrt #219708
1.1 net-im/licq/licq-1.3.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/licq/licq-1.3.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/licq/licq-1.3.6.ebuild?rev=1.1&content-type=text/plain
Index: licq-1.3.6.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/licq/licq-1.3.6.ebuild,v 1.1 2008/10/29 16:13:13 tester Exp $
EAPI="1"
inherit eutils kde-functions multilib
DESCRIPTION="ICQ Client with v8 support"
HOMEPAGE="http://www.licq.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="crypt debug kde msn ncurses nls qt3 qt4 socks5 ssl xosd"
# we use kde as KDE4
RDEPEND="kde? (
qt3? ( kde-base/kdelibs:3.5 )
)
ssl? ( dev-libs/openssl )
qt3? ( x11-libs/qt:3 )
qt4? ( x11-libs/qt-gui:4 )
nls? ( sys-devel/gettext )
ncurses? ( sys-libs/ncurses =dev-libs/cdk-5* )
crypt? ( app-crypt/gpgme:1 )
xosd? ( x11-libs/xosd )"
DEPEND="${RDEPEND}
dev-libs/boost
qt4? ( >=dev-util/cmake-2.6.2 )"
_generate_plugins_directories() {
PLUGINS="auto-reply email rms"
use msn && PLUGINS="${PLUGINS} msn"
use ncurses && PLUGINS="${PLUGINS} console"
use xosd && PLUGINS="${PLUGINS} osd"
# QT4 is something extra. Uses cmake.
use qt4 && PLUGINS_CMAKE="${PLUGINS_CMAKE} qt4-gui"
use qt3 && PLUGINS="${PLUGINS} qt-gui"
elog "I will generate these plugins/frontends for licq:"
elog "${PLUGINS} ${PLUGINS_CMAKE}"
}
pkg_setup() {
_generate_plugins_directories
}
src_compile() {
local myconf myconf2 plugin
# global config setup for automake
myconf="$(use_enable crypt gpgme)
$(use_enable ssl openssl)
$(use_enable socks5)
$(use_enable debug)
$(use_enable nls)"
einfo "Compiling Licq core."
econf ${myconf} || die "econf failed"
emake || die "emake failed"
for plugin in ${PLUGINS}; do
cd "${S}"/plugins/"${plugin}"
einfo "Compiling Licq: \"${plugin}\"."
if use qt3; then
set-qtdir 3
set-kdedir 3
use kde && myconf2="${myconf} --with-kde"
myconf2="${myconf2} --with-qt-libraries=${QTDIR}/$(get_libdir)"
fi
econf ${myconf} ${myconf2} || die "econf failed"
emake || die "emake failed"
done
# we like qt4 it uses cmake
if use qt4; then
cd "${S}"/plugins/qt4-gui
einfo "Compiling Licq: \"qt4-gui\"."
# Possible error because of one tiny issue we introduce in kde
# it is called kdeprefix and in that case you can't be sure where it
# find kde stuff. This is working only for -kdeprefix so someone will
# need to fix this later
myconf2="-DCMAKE_INSTALL_PREFIX=/usr"
# kde not yet workie
# use kde && myconf2="${myconf2} -DWITH_KDE=1"
use kde && ewarn "Sorry but kde4 support is duped and not working so not
enabling for now"
cmake . ${myconf2} || die "cmake failed"
emake || die "emake failed"
fi
}
src_install() {
# install core
einfo "Installing Licq core."
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog INSTALL README* doc/*
# Install the plug-ins
for plugin in ${PLUGINS}; do
cd "${S}"/plugins/"${plugin}"
einfo "Installing Licq: \"${plugin}\"."
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README* *.conf
done
if use qt4; then
cd "${S}"/plugins/qt4-gui
einfo "Installing Licq: \"qt4-gui\"."
emake DESTDIR="${D}" install || die
docinto plugins/qt4-gui
dodoc doc/README*
fi
exeinto /usr/share/${PN}/upgrade
doexe "${S}"/upgrade/*
# fixes bug #22136 and #149464
rm -fR "${D}"/var
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-10-29 16:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-29 16:13 [gentoo-commits] gentoo-x86 commit in net-im/licq: ChangeLog licq-1.3.6.ebuild licq-1.3.2-r1.ebuild licq-1.3.4-r1.ebuild licq-1.3.2.ebuild licq-1.3.5.ebuild Olivier Crete (tester)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox