# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/bitlbee-1.0.3.ebuild,v 1.14 2008/03/25 22:11:48 cedk Exp $ inherit eutils toolchain-funcs DESCRIPTION="irc to IM gateway that support multiple IM protocols" HOMEPAGE="http://www.bitlbee.org/" SRC_URI="http://get.bitlbee.org/src/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-fbsd" IUSE="debug jabber msn oscar yahoo gnutls ssl nss xinetd ipv6" DEPEND=">=dev-libs/glib-2.0 msn? ( gnutls? ( net-libs/gnutls ) ssl? ( dev-libs/openssl ) nss? ( dev-libs/nss ) ) jabber? ( gnutls? ( net-libs/gnutls ) ssl? ( dev-libs/openssl ) nss? ( dev-libs/nss ) )" RDEPEND="${DEPEND} virtual/logger" no_flags_die() { eerror "" eerror "Please choose a protocol or protocols to use with" eerror "bitlbee by enabling the useflag for the protocol" eerror "desired." eerror "" eerror " Valid useflags are;" eerror " jabber, msn, oscar and yahoo" die "No IM protocols selected!" } pkg_setup() { elog "Note: Support for all IM protocols are controlled by use flags." elog " Make sure you've enabled the flags you want." elog "" # Warn but not die if jabber is enabled but SSL is not if ( use jabber && ( use !ssl && use !gnutls && use !nss ) ); then ewarn "" ewarn "You have enabled support for Jabber but do not have SSL" ewarn "support enabled. This *will* prevent bitlbee from being" ewarn "able to connect to SSL enabled Jabber servers. If you need to" ewarn "connect to Jabber over SSL, enable one of the following use" ewarn "flags: gnutls, nss ssl" ewarn "" fi # At the request of upstream, die if MSN Messenger support is enabled # but no SSL support has been enabled if ( use msn && ( use !ssl && use !gnutls && use !nss ) ); then eerror "" eerror "In order to enable support for the MSN Messenger protocol," eerror "SSL support needs to be enabled. Please enable the ssl," eerror "gnutls or nss use flags to provide SSL support". die "MSN support enabled without any SSL support enabled." fi use jabber || use msn || use oscar || use yahoo || no_flags_die } src_unpack() { unpack ${P}.tar.gz # Patch the default xinetd file to add/adjust values to Gentoo defaults cd "${S}"/doc && epatch "${FILESDIR}"/${PN}-1.0.3-xinetd.patch cd "${S}" && epatch "${FILESDIR}"/${PN}-gentoohack.patch } src_compile() { # setup protocol, ipv6 and debug local myconf use debug && myconf="${myconf} --debug=1" use ipv6 || myconf="${myconf} --ipv6=0" use msn || myconf="${myconf} --msn=0 " use jabber || myconf="${myconf} --jabber=0" use oscar || myconf="${myconf} --oscar=0" use yahoo || myconf="${myconf} --yahoo=0" # setup ssl use flags use ssl && use gnutls && myconf="${myconf} --ssl=gnutls" use ssl && use nss && myconf="${myconf} --ssl=nss" use ssl && use !gnutls && use !nss && myconf="${myconf} --ssl=openssl" if ( ( use jabber && ( use gnutls || use ssl || use nss ) ) \ || use msn ) && use !gnutls && use !ssl && use !nss; then myconf="${myconf} --ssl=bogus" fi # NOTE: bitlbee's configure script is not an autotool creation, so that is # why we don't use econf. ./configure --prefix=/usr --datadir=/usr/share/bitlbee \ --etcdir=/etc/bitlbee ${myconf} || die "econf failed" emake || die "make failed" # make bitlbeed forking server cd utils $(tc-getCC) ${CFLAGS} bitlbeed.c -o bitlbeed || die "bitlbeed failed to compile" } src_install() { dodir /var/lib/bitlbee make install DESTDIR="${D}" || die "install failed" make install-etc DESTDIR="${D}" || die "install failed" make install-doc DESTDIR="${D}" || die "install failed" keepdir /var/lib/bitlbee dodoc doc/{AUTHORS,CHANGES,CREDITS,FAQ,README} dodoc doc/user-guide/user-guide.txt dohtml -A xml doc/user-guide/*.xml dohtml -A xsl doc/user-guide/*.xsl dohtml doc/user-guide/*.html doman doc/bitlbee.8 doc/bitlbee.conf.5 dobin utils/bitlbeed if use xinetd; then insinto /etc/xinetd.d newins doc/bitlbee.xinetd bitlbee fi newinitd "${FILESDIR}"/bitlbeed.init bitlbeed || die newconfd "${FILESDIR}"/bitlbeed.confd bitlbeed || die keepdir /var/run/bitlbeed dodir /usr/share/bitlbee cp "${S}"/utils/* "${D}"/usr/share/bitlbee rm "${D}"/usr/share/bitlbee/bitlbeed* } pkg_postinst() { chown nobody:nobody "${ROOT}"/var/lib/bitlbee chmod 700 "${ROOT}"/var/lib/bitlbee elog "The utils included in bitlbee (other than bitlbeed) are now" elog "located in /usr/share/bitlbee" elog elog "NOTE: The IRSSI script is no longer provided by BitlBee." }