blob: c1c51c4aae3bf1f295eec8ef263156e8ad87c875 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bchunk/bchunk-1.1.1.ebuild,v 1.4 2002/08/14 09:14:53 pvdabeel Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Converts bin/cue CD-images to iso+wav/cdr"
SRC_URI="http://hes.iki.fi/bchunk/${P}.tar.gz"
HOMEPAGE="http://hes.iki.fi/bchunk/"
LICENSE="GPL"
DEPEND="virtual/glibc"
SLOT="0"
KEYWORDS="x86 ppc"
src_compile() {
gcc ${CFLAGS} -o bchunk bchunk.c
}
src_install () {
dobin bchunk
doman bchunk.1
dodoc ${P}.lsm
dodoc COPYING README
}
|