blob: 847481915811e1637adc6cab7bb3124865f1f47b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/splay/splay-0.9.5.2.ebuild,v 1.10 2004/06/25 00:24:18 agriffis Exp $
IUSE=""
DESCRIPTION="an audio player, primarily for the console"
HOMEPAGE="http://splay.sourceforge.net/"
# Note non-standard sourceforge distribution location, so we can't use
# mirror://sourceforge/...
SRC_URI="http://splay.sourceforge.net/tgz/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
DEPEND="virtual/glibc"
src_compile() {
# Force compilation to omit X support according to BUG #5856
# even when qt is present on the system.
export ac_cv_lib_qt_main=no
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
# Specify man-page to prevent xsplay.1 from being installed
einstall man_MANS=splay.1 || die "einstall failed"
dodoc AUTHORS COPYING COPYING.LIB ChangeLog README README.LIB NEWS
}
|