diff options
Diffstat (limited to 'net-irc/quassel/quassel-0.3.0.3.ebuild')
-rw-r--r-- | net-irc/quassel/quassel-0.3.0.3.ebuild | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/net-irc/quassel/quassel-0.3.0.3.ebuild b/net-irc/quassel/quassel-0.3.0.3.ebuild new file mode 100644 index 000000000000..65223a4d3531 --- /dev/null +++ b/net-irc/quassel/quassel-0.3.0.3.ebuild @@ -0,0 +1,117 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.3.0.3.ebuild,v 1.1 2008/10/26 13:22:39 jokey Exp $ + +EAPI=1 + +inherit cmake-utils eutils + +MY_P="${P/_/-}" + +DESCRIPTION="Core/client IRC client." +HOMEPAGE="http://quassel-irc.org/" +SRC_URI="http://quassel-irc.org/pub/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +KEYWORDS="~amd64 ~sparc ~x86" +SLOT="0" +IUSE="+dbus debug +server +ssl +X" + +LANGS="nb_NO da de fr" +for l in ${LANGS}; do + IUSE="${IUSE} linguas_${l}" +done + +RDEPEND="x11-libs/qt-core:4 + server? ( + x11-libs/qt-sql:4 + x11-libs/qt-script:4 + ) + X? ( x11-libs/qt-gui:4 ) + dbus? ( x11-libs/qt-dbus ) + ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND} + >=dev-util/cmake-2.4.7" + +DOCS="AUTHORS ChangeLog README README.Qtopia" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + if ! use server && ! use X ; then + eerror "You have to build one or both of quassel client or server." + die "Both server and X USE flags unset." + fi + + if use server && ! built_with_use x11-libs/qt-sql sqlite ; then + eerror "Please rebuild x11-libs/qt-sql:4 with sqlite USE flag enabled." + die "Missing sqlite support in x11-libs/qt-sql:4" + fi + + if use ssl && ! built_with_use x11-libs/qt-core ssl ; then + eerror "Please rebuild x11-libs/qt-core:4 with ssl USE flag enabled." + die "Missing ssl support in x11-libs/qt-core:4" + fi +} + +src_compile() { + local MY_LANGUAGES="" + for ling in ${LINGUAS}; do + if has $ling ${LANGS}; then + MY_LANGUAGES="${ling} ${MY_LANGUAGES}" + fi + done + + local mycmakeargs=" + $(cmake-utils_use_want server CORE) + $(cmake-utils_use_want X QTCLIENT) + $(cmake-utils_use_with dbus DBUS) + $(cmake-utils_use_with ssl OPENSSL) + -DLINGUAS="${MY_LANGUAGES}" + -DWANT_MONO=OFF" + + cmake-utils_src_compile +} + +src_install() { + cmake-utils_src_install + + # Only install the icons if the X client was installed + if use X ; then + insinto /usr/share/icons/hicolor + # avoid the connected/ directory, get only the ${size}x${size} + doins -r "${S}"/src/icons/quassel/*x* || die "installing quassel icons failed" + fi + + if use server ; then + newinitd "${FILESDIR}"/quasselcore.init quasselcore || die "newinitd failed" + newconfd "${FILESDIR}"/quasselcore.conf quasselcore || die "newconfd failed" + + insinto /usr/share/doc/${PF} + doins "${S}"/scripts/manageusers.py || die "installing manageusers.py failed" + 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 /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." + elog + elog "Adding more than one user or changing username/password is not" + elog "possible via the quasselclient yet. If you need to do these things" + elog "you have to use the manageusers.py script, which has been installed in" + elog "/usr/share/doc/${PF}". + elog "Please make sure that the quasselcore is stopped before adding more users." + fi + + if use server && use ssl ; then + elog + elog "To enable SSL support for client/core connections the quasselcore needs" + elog "a PEM certificate which needs to be stored in ~/.quassel/quasselCert.pem." + elog "To create the certificate use the following command:" + elog "openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout ~/.quassel/quasselCert.pem -out ~/.quassel/quasselCert.pem" + fi +} |