blob: 78edf8ef8eb9e41cffab2972c581be785e6e4ea3 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cdspeed/cdspeed-0.3.ebuild,v 1.3 2004/02/22 06:58:28 mr_bones_ Exp $
DESCRIPTION="Change the speed of your CD drive."
HOMEPAGE="http://linuxfocus.org/~guido/"
LICENSE="GPL-2"
DEPEND="virtual/glibc"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~hppa ~mips"
SLOT="0"
SRC_URI="http://linuxfocus.org/~guido/${P}.tar.gz"
S=${WORKDIR}/${P}
src_unpack() {
unpack ${A}
cd ${S}
mv Makefile Makefile.orig
sed -e "s:^CFLAGS=-O.*:CFLAGS=${CFLAGS}:" \
Makefile.orig > Makefile
}
src_compile() {
emake || die
}
src_install() {
exeinto /usr/bin
doexe cdspeed
exeinto /usr/lib/cdspeed
doexe cdmount
dodoc README
}
|