Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/declick/
Date: Wed, 15 Aug 2018 20:05:01
Message-Id: 1534363478.d3801799ceb77296f21f286115949cea3d8fe96c.asturm@gentoo
1 commit: d3801799ceb77296f21f286115949cea3d8fe96c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 15 20:01:29 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 15 20:04:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3801799
7
8 media-sound/declick: Drop old
9
10 Package-Manager: Portage-2.3.46, Repoman-2.3.10
11
12 media-sound/declick/declick-0.6.5.ebuild | 37 --------------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/media-sound/declick/declick-0.6.5.ebuild b/media-sound/declick/declick-0.6.5.ebuild
16 deleted file mode 100644
17 index e680690eb32..00000000000
18 --- a/media-sound/declick/declick-0.6.5.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2009 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit eutils toolchain-funcs
27 -
28 -DESCRIPTION="declick is a dynamic digital declicker for audio sample files"
29 -HOMEPAGE="http://home.snafu.de/wahlm/dl8hbs/declick.html"
30 -SRC_URI="http://home.snafu.de/wahlm/dl8hbs/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 x86"
35 -IUSE=""
36 -DEPEND=""
37 -
38 -src_prepare() {
39 - # add $LDFLAGS to link command
40 - sed -i -e "s:\(-o declick\):\$(LDFLAGS) \1:g" Makefile
41 -
42 - # convert docs to utf-8
43 - if [ -x "$(type -p iconv)" ]; then
44 - for X in README; do
45 - iconv -f LATIN1 -t UTF8 -o "${X}~" "${X}" && mv -f "${X}~" "${X}" || rm -f "${X}~"
46 - done
47 - fi
48 -}
49 -
50 -src_compile() {
51 - emake CC="$(tc-getCC)" COPTS="${CFLAGS}" LDFLAGS="${LDFLAGS}" declick || die "emake failed"
52 -}
53 -
54 -src_install() {
55 - dobin declick
56 - dodoc README
57 -}