forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erec-2.2.0.1.ebuild
46 lines (36 loc) · 1009 Bytes
/
erec-2.2.0.1.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit eutils toolchain-funcs
DESCRIPTION="A shared audio recording server"
HOMEPAGE="http://bisqwit.iki.fi/source/erec.html"
SRC_URI="http://bisqwit.iki.fi/src/arch/${P}.tar.bz2"
KEYWORDS="amd64 ~ppc sparc x86"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
RDEPEND=""
DEPEND="sys-apps/sed"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:BINDIR=/usr/local/bin:BINDIR=${D}usr/bin:" \
-e "s:^\\(ARGHLINK.*-L.*\\):#\\1:" \
-e "s:^#\\(ARGHLINK=.*a\\)$:\\1:" \
-e "s:\$(CXX):\$(CXX) \$(CXXFLAGS) -I\"${S}\"/argh:g" \
Makefile
sed -i \
-e "s:CPPFLAGS=:CPPFLAGS=-I\"${S}\"/argh :" \
Makefile.sets
echo "" > .depend
echo "" > argh/.depend
epatch "${FILESDIR}/${P}-gcc43.patch"
}
src_compile() {
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -j1 || die
}
src_install() {
dobin erec || die
dodoc README
dohtml README.html
}