blob: 115e9fbdbcdde34c2a6046fdeb7817fc67e94f40 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/bpmdj/bpmdj-1.9.ebuild,v 1.11 2004/07/06 06:32:02 eradicator Exp $
inherit eutils
DESCRIPTION="Bpmdj, software for measuring the BPM of music and mixing"
HOMEPAGE="http://bpmdj.sourceforge.net/"
SRC_URI="ftp://progpc26.vub.ac.be/pub/bpmdj/1.9/bpmdj-1.9.source.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="x11-libs/qt
virtual/tetex"
RDEPEND="${DEPEND}
!ppc? ( media-sound/alsamixergui )
virtual/mpg123"
src_compile() {
addwrite "${QTDIR}/etc/settings"
make VARTEXFONTS=${T}/fonts || die
}
src_install () {
make DESTDIR=${D} deb-install || die
mv ${D}/usr/share/doc/{${PN},${PF}}
}
|