Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/cdspeed/
Date: Mon, 08 Oct 2018 11:43:20
Message-Id: 1538998978.fdff63347d66b20a9f876e119324a5cc18d38221.zlogene@gentoo
1 commit: fdff63347d66b20a9f876e119324a5cc18d38221
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 8 11:42:58 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 8 11:42:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdff6334
7
8 app-misc/cdspeed: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 app-misc/cdspeed/cdspeed-0.4-r1.ebuild | 34 ----------------------------------
14 1 file changed, 34 deletions(-)
15
16 diff --git a/app-misc/cdspeed/cdspeed-0.4-r1.ebuild b/app-misc/cdspeed/cdspeed-0.4-r1.ebuild
17 deleted file mode 100644
18 index 9701b686d35..00000000000
19 --- a/app-misc/cdspeed/cdspeed-0.4-r1.ebuild
20 +++ /dev/null
21 @@ -1,34 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="2"
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Change the speed of your CD drive"
30 -HOMEPAGE="http://linuxfocus.org/~guido/"
31 -SRC_URI="http://linuxfocus.org/~guido/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 ~hppa ~mips ppc x86"
36 -IUSE=""
37 -
38 -DEPEND=">=sys-apps/sed-4"
39 -RDEPEND=""
40 -
41 -src_prepare() {
42 - sed -i Makefile \
43 - -e 's| -o | $(LDFLAGS)&|g' \
44 - || die "sed Makefile failed"
45 -}
46 -
47 -src_compile() {
48 - emake CFLAGS="${CFLAGS} -Wall -Wno-unused" CC=$(tc-getCC) \
49 - || die "emake failed"
50 -}
51 -
52 -src_install() {
53 - emake PREFIX="${D}/usr" install || die "emake install"
54 - dodoc README
55 -}