blob: 60d42c1492e2b867802644f849f58086c356633e (
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/wavbreaker/wavbreaker-0.4.ebuild,v 1.5 2004/06/25 00:28:57 agriffis Exp $
IUSE=""
inherit eutils
DESCRIPTION="wavbreaker/wavmerge GTK2 utility to break or merge WAV file"
HOMEPAGE="http://huli.org/wavbreaker/"
SRC_URI="http://huli.org/wavbreaker/${P}.tar.gz"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND="dev-libs/libxml2
>=x11-libs/gtk+-2.0
virtual/glibc"
DOCS="ChangeLog COPYING INSTALL README NEWS"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gcc2_fix.patch
}
src_install() {
make DESTDIR=${D} install
dodoc ${DOCS}
}
|