blob: 24377e072281458165cb1c68fb5d7f3d10760d90 (
plain)
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
inherit flag-o-matic toolchain-funcs eutils
DESCRIPTION="CLI program to play and record audiofiles"
HOMEPAGE="http://rawrec.sourceforge.net"
SRC_URI="mirror://sourceforge/rawrec/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
IUSE=""
S="${S}"/src
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-libs.patch"
}
src_compile() {
emake CC="$(tc-getCC)" OPTFLAGS="${CFLAGS}" || die "emake failed."
}
src_install() {
emake EXE_DIR="${D}/usr/bin" \
MAN_DIR="${D}/usr/share/man/man1" install || die "emake install failed."
einfo "Removing SUID from binary.."
fperms 755 /usr/bin/rawrec
}
|