linamh/app-misc/irtrans-irserver/irtrans-irserver-5.9.01-r1.ebuild

54 lines
1.2 KiB
Bash

# 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="ftp://mars.arge.at/irtrans/irserver-src-${PV}.tar.gz
http://ftp.mars.arge.at/irtrans/irserver-src-${PV}.tar.gz
ftp://mars.arge.at/irtrans/irserver-${PV}.tar.gz
http://ftp.mars.arge.at/irtrans/irserver-${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND="virtual/libc"
RESTRICT="mirror nostrip"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-missing-include.diff
}
src_compile() {
cd ${WORKDIR}
append-flags -DLINUX -Icommon
if use x86 ; then
irbuild=irserver
elif use amd64 ; then
irbuild=irserver64
fi
einfo "CFLAGS=\"${CFLAGS}\""
emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" ${irbuild} || die "emake irserver failed"
}
src_install() {
newsbin ${WORKDIR}/${irbuild} irserver
keepdir /etc/irserver/remotes
docinto remotes
dodoc remotes/*
newinitd "${FILESDIR}"/irtrans-server.initd irtrans-server
newconfd "${FILESDIR}"/irtrans-server.confd irtrans-server
}