# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/yaps/yaps-0.96-r2.ebuild,v 1.4 2008/10/26 22:58:47 sbriesen Exp $ inherit eutils toolchain-funcs DESCRIPTION="Yet Another Pager Software (optional with CAPI support)" HOMEPAGE="ftp://sunsite.unc.edu/pub/Linux/apps/serialcomm/machines/" SRC_URI="capi? ( ftp://ftp.melware.net/capi4yaps/${P}.c3.tgz ) !capi? ( ftp://sunsite.unc.edu/pub/Linux/apps/serialcomm/machines/${P}.tar.gz )" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" IUSE="capi lua slang unicode" RDEPEND="capi? ( net-dialup/capi4k-utils ) slang? ( >=sys-libs/slang-1.4 ) lua? ( dev-lang/lua )" DEPEND="${RDEPEND} lua? ( dev-util/pkgconfig )" src_unpack() { unpack ${A} use capi && mv -f "${S}.c3" "${S}" cd "${S}" # apply patches epatch "${FILESDIR}/${P}-gentoo.patch" # if specified, convert all relevant files from latin1 to UTF-8 if use unicode; then for i in yaps.doc; do einfo "Converting '${i}' to UTF-8" iconv -f latin1 -t utf8 -o "${i}~" "${i}" && mv -f "${i}~" "${i}" || rm -f "${i}~" done fi } src_compile() { local myconf="" use lua && myconf="${myconf} LUA=True" use slang && myconf="${myconf} SLANG=True" emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" ${myconf} || die "emake failed" } src_install() { dobin yaps insinto /etc doins yaps.rc keepdir /usr/lib/yaps doman yaps.1 dohtml yaps.html dodoc BUGREPORT README yaps.lsm yaps.doc docinto contrib dodoc contrib/{README,m2y.pl,tap.sl} } pkg_postinst() { elog elog "Please edit /etc/yaps.rc to suit your needs." elog }