# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="An (optionally) transparent proxy for AOL's IM network" HOMEPAGE="http://www.zigamorph.net/timps/" SRC_URI="ftp://ftp.zigamorph.net/pub/timps/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="debug" DEPEND="virtual/os-headers >=sys-devel/libtool-1.5.16 >=sys-devel/autoconf-2.59-r6 >=sys-devel/automake-1.9.5 >=dev-libs/libnbio-0.20" src_unpack() { unpack ${A} } src_compile() { # --enable-profile local myconf="" use debug && myconf="${myconf} --enable-debug" econf \ --with-pkgdocdir=/usr/share/doc/${PF} \ $(use_enable screen detach) \ ${myconf} \ || die "configure failed" emake || die "make failed" } src_install() { cd ${S} make DESTDIR=${D} install || die "make install failed" dodoc AUTHORS INSTALL NEWS README TODO }