blob: 830d82ff37f4e9c0e1d9a240fe903232a926c5e8 (
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
36
37
38
39
40
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/rplay/rplay-3.3.2.ebuild,v 1.17 2009/08/03 13:16:20 ssuominen Exp $
inherit flag-o-matic eutils
DESCRIPTION="Play sounds on remote Unix systems, without sending audio data over the network."
HOMEPAGE="http://rplay.doit.org/"
SRC_URI="http://rplay.doit.org/dist/${P}.tar.gz mirror://debian/pool/main/r/rplay/rplay_3.3.2-8.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sparc x86 ~x86-fbsd"
IUSE=""
pkg_setup() {
enewgroup "rplayd" ""
enewuser "rplayd" "" "" "" "rplayd"
}
src_unpack() {
unpack ${A}
epatch "${WORKDIR}"/rplay_3.3.2-8.diff
}
src_compile() {
# fixing #36527
append-flags -include errno.h
econf \
--enable-rplayd-user="rplayd" \
--enable-rplayd-group="rplayd" \
|| die "./configure failed"
emake || die
}
src_install() {
einstall || die
}
|