2008-07-18 21:22:54 +02:00
|
|
|
# Copyright 1999-2008 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2008-07-19 04:24:58 +02:00
|
|
|
# $Header: $
|
2008-07-18 21:22:54 +02:00
|
|
|
|
|
|
|
inherit eutils flag-o-matic toolchain-funcs
|
|
|
|
|
|
|
|
DESCRIPTION="IRTrans ASCII Client"
|
|
|
|
HOMEPAGE="http://www.irtrans.de"
|
|
|
|
SRC_URI="ftp://mars.arge.at/irtrans/irserver-src-${PV}.tar.gz
|
|
|
|
http://ftp.mars.arge.at/irtrans/irserver-src-${PV}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~x86 ~amd64 ~arm"
|
|
|
|
IUSE=""
|
|
|
|
|
2008-07-19 04:21:33 +02:00
|
|
|
DEPEND="virtual/libc"
|
2008-07-18 21:22:54 +02:00
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
|
|
|
|
append-flags -DLINUX -Icommon
|
|
|
|
$(tc-getCC) ${CFLAGS} -o irclient client.c || die "irclient compile failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
|
|
|
|
dobin "${WORKDIR}"/irclient
|
|
|
|
}
|