Correct some small bugs

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@147 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one
2007-07-30 08:54:45 +00:00
parent 2fe7f5bbb4
commit b764e3e7a2
7 changed files with 40 additions and 70 deletions

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils flag-o-matic toolchain-funcs multilib
DESCRIPTION="IRTrans Server"
HOMEPAGE="http://www.irtrans.de"
SRC_URI="ftp://mars.arge.at/irtrans/irserver-src-${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="x86"
DEPEND=""
RDEPEND="virtual/libc"
RESTRICT="mirror nostrip"
src_unpack() {
unpack ${A}
}
src_compile() {
cd ${WORKDIR}
append-flags -DLINUX -Icommon
if use x86 || ( has_multilib_profile && ABI="x86" ) ; then
irbuild=irserver
append-flags -m32
else
irbuild=irserver_noccf
fi
einfo "CFLAGS=\"${CFLAGS}\""
emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" ${irbuild} || die "emake irserver failed"
}
src_install() {
dosbin ${WORKDIR}/irserver
keepdir /etc/irserver/remotes
newinitd "${FILESDIR}"/irtrans-server.initd irtrans-server
newconfd "${FILESDIR}"/irtrans-server.confd irtrans-server
}