blob: a07b5f051ffeaf8f79f1f17c1d5cdadb830a20fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bchunk/bchunk-1.1.1.ebuild,v 1.13 2004/03/12 11:51:19 mr_bones_ Exp $
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-2"
DEPEND="virtual/glibc"
SLOT="0"
KEYWORDS="x86 ppc sparc"
src_compile() {
gcc ${CFLAGS} -o bchunk bchunk.c
}
src_install() {
dobin bchunk
doman bchunk.1
dodoc ${P}.lsm
dodoc COPYING README
}
|