add replaygain with multilib support
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2778 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
67
app-misc/irtrans-irserver/irtrans-irserver-6.03.02.ebuild
Normal file
67
app-misc/irtrans-irserver/irtrans-irserver-6.03.02.ebuild
Normal file
@@ -0,0 +1,67 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
inherit eutils flag-o-matic toolchain-funcs
|
||||
|
||||
RESTRICT="strip"
|
||||
|
||||
DESCRIPTION="IRTrans Server"
|
||||
HOMEPAGE="http://www.irtrans.de"
|
||||
SRC_URI="http://www.irtrans.de/download/Server/Linux/irserver-src.tar.gz -> irserver-src-${PV}.tar.gz
|
||||
http://ftp.disconnected-by-peer.at/irtrans/irserver-src-${PV}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64 ~arm"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="virtual/libc"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}"-6.01.15-arm-1.patch
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
|
||||
append-flags -DLINUX
|
||||
|
||||
# Set sane defaults (arm target has no -D flags added)
|
||||
irbuild=irserver_arm_noccf
|
||||
irserver=irserver
|
||||
|
||||
# change variable by need
|
||||
if use x86 ; then
|
||||
irbuild=irserver
|
||||
elif use amd64 ; then
|
||||
irbuild=irserver64
|
||||
irserver=irserver64
|
||||
elif use arm ; then
|
||||
irbuild=irserver_arm
|
||||
fi
|
||||
|
||||
# Some output for bugreport
|
||||
einfo "CFLAGS=\"${CFLAGS}\""
|
||||
einfo "Build Target=\"${irbuild}\""
|
||||
einfo "Build Binary=\"${irserver}\""
|
||||
|
||||
# Build
|
||||
emake CXX="$(tc-getCXX)" CC="$(tc-getCC)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" "${irbuild}" || die "emake irserver failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
|
||||
newbin "${WORKDIR}/${irserver}" irserver
|
||||
|
||||
keepdir /etc/irserver/remotes
|
||||
|
||||
docinto remotes
|
||||
dodoc remotes/*
|
||||
|
||||
newinitd "${FILESDIR}"/irtrans-server.initd irtrans-server
|
||||
newconfd "${FILESDIR}"/irtrans-server.confd irtrans-server
|
||||
}
|
||||
Reference in New Issue
Block a user