blob: 4293bc97a6ad29d28fe38872d04b6cbc2516d181 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/mixxx/mixxx-0.9.2.ebuild,v 1.9 2004/07/01 07:53:57 eradicator Exp $
IUSE=""
DESCRIPTION="Digital DJ tool using QT 3.x"
HOMEPAGE="http://mixxx.sourceforge.net"
SRC_URI="mirror://sourceforge/mixxx/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND="virtual/libc
>=x11-libs/qt-3.0.3
media-libs/portaudio
media-sound/madplay
media-libs/audiofile"
S=${WORKDIR}/${P}/src
src_compile() {
qmake mixxx || die
make || die
}
src_install() {
dodir /usr/bin
cp ./mixxx ${D}/usr/bin || die
dodir /usr/share/mixxx
cp ./config/* ${D}/usr/share/mixxx/ || die
}
|