summaryrefslogtreecommitdiff
blob: 2bf0327403dd03691397b54b4990cb3230a05a6f (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Peter Gavin <pbg1854@garnet.acns.fsu.edu>
# $Header: /var/cvsroot/gentoo-x86/media-sound/cdparanoia/cdparanoia-3.9.8.ebuild,v 1.3 2001/08/11 03:38:07 drobbins Exp $

A=${PN}-III-alpha9.8.src.tgz
S=${WORKDIR}/${PN}-III-alpha9.8
DESCRIPTION="an advanced CDDA reader with error correction"
SRC_URI="http://www.xiph.org/paranoia/download/${A}"
HOMEPAGE="http://www.xiph.org/paranoia/index.html"

DEPEND="virtual/glibc"

src_compile() {

    try ./configure --prefix=/usr 
	#the configure script doesn't recognize i686-pc-linux-gnu
	#--host=${CHOST}
    try make OPT="$CFLAGS"
}

src_install () {
    cd ${S}
    dodir /usr/bin /usr/lib /usr/share/man1 /usr/include
    try make prefix=${D}/usr MANDIR=${D}/usr/share/man install
    dodoc FAQ.txt GPL README
}