diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-10-14 21:21:42 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-10-14 21:21:42 +0000 |
commit | 9e996858d64e367eb04041bdb7bea5e22c2e5e4f (patch) | |
tree | e879b9a350ed89628e68b2aa4a4543330f416348 /net-irc/quassel | |
parent | Version bump. (diff) | |
download | gentoo-2-9e996858d64e367eb04041bdb7bea5e22c2e5e4f.tar.gz gentoo-2-9e996858d64e367eb04041bdb7bea5e22c2e5e4f.tar.bz2 gentoo-2-9e996858d64e367eb04041bdb7bea5e22c2e5e4f.zip |
Bump to 0.5.0, makes upstream happy
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/quassel')
-rw-r--r-- | net-irc/quassel/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/quassel/quassel-0.5.0.ebuild | 114 |
2 files changed, 120 insertions, 1 deletions
diff --git a/net-irc/quassel/ChangeLog b/net-irc/quassel/ChangeLog index 88db16b3bf8d..27016852c793 100644 --- a/net-irc/quassel/ChangeLog +++ b/net-irc/quassel/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/quassel # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v 1.63 2009/10/12 18:55:49 volkmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/ChangeLog,v 1.64 2009/10/14 21:21:42 patrick Exp $ + +*quassel-0.5.0 (14 Oct 2009) + + 14 Oct 2009; Patrick Lauer <patrick@gentoo.org> +quassel-0.5.0.ebuild: + Bump to 0.5.0, makes upstream happy 12 Oct 2009; Mounir Lamouri <volkmar@gentoo.org> quassel-0.5_rc2.ebuild: Keywording for ppc, bug 272760 diff --git a/net-irc/quassel/quassel-0.5.0.ebuild b/net-irc/quassel/quassel-0.5.0.ebuild new file mode 100644 index 000000000000..ce609021884d --- /dev/null +++ b/net-irc/quassel/quassel-0.5.0.ebuild @@ -0,0 +1,114 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.5.0.ebuild,v 1.1 2009/10/14 21:21:42 patrick Exp $ + +EAPI="2" + +MY_P="${P/_/-}" + +inherit cmake-utils eutils + +DESCRIPTION="Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity." +HOMEPAGE="http://quassel-irc.org/" +SRC_URI="http://quassel-irc.org/pub/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +IUSE="dbus debug kde monolithic +oxygen phonon postgres +server +ssl webkit +X" + +LANGS="cs da de fr hu it nb_NO ru sl tr" +for l in ${LANGS}; do + IUSE="${IUSE} linguas_${l}" +done + +RDEPEND=" + dbus? ( x11-libs/qt-dbus:4 ) + monolithic? ( + !postgres? ( x11-libs/qt-sql:4[sqlite] dev-db/sqlite[threadsafe] ) + postgres? ( x11-libs/qt-sql:4[postgres] >=virtual/postgresql-base-8.3 ) + x11-libs/qt-script:4 + x11-libs/qt-gui:4 + kde? ( >=kde-base/kdelibs-4.1 ) + phonon? ( || ( media-sound/phonon x11-libs/qt-phonon ) ) + webkit? ( x11-libs/qt-webkit:4 ) + ) + !monolithic? ( + server? ( + !postgres? ( x11-libs/qt-sql:4[sqlite] dev-db/sqlite[threadsafe] ) + postgres? ( x11-libs/qt-sql:4[postgres] ) + x11-libs/qt-script:4 + ) + X? ( + x11-libs/qt-gui:4 + kde? ( >=kde-base/kdelibs-4.1 ) + phonon? ( || ( media-sound/phonon x11-libs/qt-phonon ) ) + webkit? ( x11-libs/qt-webkit:4 ) + ) + ) + ssl? ( x11-libs/qt-core:4[ssl] ) + " +DEPEND="${RDEPEND}" + +DOCS="AUTHORS ChangeLog README" + +S="${WORKDIR}/${MY_P}" + +pkg_setup() { + if ! use monolithic && ! use server && ! use X ; then + eerror "You have to build at least one of the monolithic client (USE=monolithic)," + eerror "the quasselclient (USE=X) or the quasselcore (USE=server)." + die "monolithic, server and X flag unset." + fi +} + +src_configure() { + local my_langs + for i in ${LINGUAS}; do + my_langs="${i},${my_langs}" + done + + local mycmakeargs=" + $(cmake-utils_use_want X QTCLIENT) + $(cmake-utils_use_want server CORE) + $(cmake-utils_use_want monolithic MONO) + $(cmake-utils_use_with webkit WEBKIT) + $(cmake-utils_use_with phonon PHONON) + $(cmake-utils_use_with kde KDE) + $(cmake-utils_use_with dbus DBUS) + $(cmake-utils_use_with ssl OPENSSL) + $(cmake-utils_use_with oxygen OXYGEN) + -DEMBED_DATA=OFF + -DLINGUAS=${my_langs} + " + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + if use server ; then + newinitd "${FILESDIR}"/quasselcore-2.init quasselcore || die "newinitd failed" + newconfd "${FILESDIR}"/quasselcore-2.conf quasselcore || die "newconfd failed" + + insinto /etc/logrotate.d + newins "${FILESDIR}/quassel.logrotate" quassel + fi +} + +pkg_postinst() { + if use server ; then + ewarn + ewarn "In order to use the quassel init script you must set the" + ewarn "QUASSEL_USER variable in ${ROOT%/}/etc/conf.d/quasselcore to your username." + ewarn "Note: This is the user who runs the quasselcore and is independent" + ewarn "from the users you set up in the quasselclient." + fi + + if ( use server || use monolithic ) && use ssl ; then + elog + elog "Information on how to enable SSL support for client/core connections" + elog "is available at http://bugs.quassel-irc.org/wiki/quassel-irc." + fi +} |