2ddac1e22e
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@399 6952d904-891a-0410-993b-d76249ca496b
29 lines
618 B
Bash
29 lines
618 B
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
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=""
|
|
|
|
DEPEND="virtual/libc"
|
|
|
|
src_compile() {
|
|
|
|
append-flags -DLINUX -Icommon
|
|
$(tc-getCC) ${CFLAGS} -o irclient client.c || die "irclient compile failed"
|
|
}
|
|
|
|
src_install() {
|
|
|
|
dobin "${WORKDIR}"/irclient
|
|
}
|