# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils multilib DESCRIPTION="IRSSI-based text client for Secure Internet Live Conferencing" SRC_URI="http://www.silcnet.org/download/client/sources/${P}.tar.bz2" HOMEPAGE="http://silcnet.org/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="ipv6 perl debug" COMMONDEPEND="perl? ( dev-lang/perl ) sys-libs/ncurses >=dev-libs/glib-2.8 !<=net-im/silc-toolkit-0.9.12-r1" DEPEND="${COMMONDEPEND} dev-util/pkgconfig" RDEPEND="${COMMONDEPEND} perl? ( !net-irc/irssi !net-irc/irssi-svn )" src_unpack() { unpack ${A} cd "${S}" sed -i -e "s:-g -O2:${CFLAGS}:g" configure use amd64 && sed -i -e 's:felf\([^6]\):felf64\1:g' configure } src_compile() { local myconf="" use ipv6 && myconf="${myconf} --enable-ipv6" econf \ --datadir=/usr/share/${PN} \ --datarootdir=/usr/share/${PN} \ --mandir=/usr/share/man \ --includedir=/usr/include/${PN} \ --sysconfdir=/etc/silc \ --with-helpdir=/usr/share/${PN}/help \ --docdir=/usr/share/doc/${PF} \ --disable-optimizations \ $(use_enable debug) \ ${myconf} emake || die "emake failed" } src_install() { local myflags="" if use perl then myflags="${myflags} INSTALLDIRS=vendor" fi emake DESTDIR="${D}" ${myflags} install || die "make install failed" rm -rf "${D}"/etc "${D}"/usr/libsilc* "${D}"/usr/include dodoc ChangeLog CREDITS README TODO cd "${S}/apps/irssi" dodoc silc.conf docs/formats.txt docs/manual.txt docs/signals.txt docs/special_vars.txt dohtml docs/startup-HOWTO.html insinto /usr/share/silc-client/help rm docs/help/Make* doins docs/help/* }