You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/rawrec/rawrec-0.9.991.ebuild

35 lines
866 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/rawrec/rawrec-0.9.991.ebuild,v 1.8 2014/08/10 21:10:54 slyfox Exp $
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
}