blob: 71aa299ededffc2d6d9f2fbb5c25747892e716d9 (
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
32
33
34
35
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cdstatus/cdstatus-0.94a.ebuild,v 1.15 2007/07/11 19:30:23 mr_bones_ Exp $
inherit eutils
MY_P="cdstatus${PV}"
DESCRIPTION="Tool for diagnosing cdrom drive and digital data (audio) extraction"
HOMEPAGE="http://cdstatus.sourceforge.net/"
SRC_URI="mirror://sourceforge/cdstatus/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
#-sparc -amd64: 0.94a: Generates bad wav files x86 is good...
KEYWORDS="-amd64 ppc64 -sparc x86"
IUSE=""
S=${WORKDIR}/${MY_P}
src_compile() {
epatch ${FILESDIR}/${P}-gentoo.diff
make || die
}
src_install() {
dobin cdstatus
fperms 755 /usr/bin/cdstatus
dodoc docs/*
}
pkg_postinst() {
elog
elog "Check /usr/share/doc/cdstatus-${PV} for help"
elog
}
|