2007-05-11 19:28:43 +02:00
|
|
|
# Copyright 1999-2007 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
inherit eutils flag-o-matic toolchain-funcs
|
|
|
|
|
|
|
|
DESCRIPTION="IRTrans Server"
|
|
|
|
HOMEPAGE="http://www.irtrans.de"
|
|
|
|
SRC_URI="http://www.irtrans.de/download/Server/Linux/irserver-src.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="as-is"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
|
|
|
|
RDEPEND="virtual/libc"
|
|
|
|
|
2007-05-11 23:47:03 +02:00
|
|
|
RESTRICT="mirror nostrip"
|
2007-05-11 19:28:43 +02:00
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
unpack ${A}
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
cd ${WORKDIR}
|
|
|
|
append-flags -m32 -DLINUX -Icommon
|
|
|
|
einfo "CFLAGS=\"${CFLAGS}\""
|
|
|
|
emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" irserver || die "emake irserver failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dobin ${WORKDIR}/irserver
|
|
|
|
|
2007-05-19 21:19:42 +02:00
|
|
|
keepdir /etc/irserver/remotes
|
2007-05-11 19:28:43 +02:00
|
|
|
|
|
|
|
newinitd "${FILESDIR}"/irtrans-server.initd irtrans-server
|
|
|
|
newconfd "${FILESDIR}"/irtrans-server.confd irtrans-server
|
|
|
|
}
|
|
|
|
|