blob: fcf7aed5671142b57052f424c4d2817c9e83d8d1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/aseqview/aseqview-0.1.4.ebuild,v 1.5 2004/06/24 23:51:02 agriffis Exp $
IUSE=""
DESCRIPTION="ALSA sequencer event viewer/filter."
HOMEPAGE="http://www.alsa-project.org/~iwai/alsa.html"
LICENSE="GPL-2"
DEPEND=">=media-libs/alsa-lib-0.5.0
x11-libs/gtk+"
SLOT="0"
KEYWORDS="x86"
SRC_URI="http://www.alsa-project.org/~iwai/${P}.tar.gz"
S=${WORKDIR}/${P}
src_compile() {
econf || die "./configure failed"
make clean
make || die "Make Failed"
}
src_install() {
einstall || die "Installation Failed"
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|