summaryrefslogtreecommitdiff
blob: 6f47ecb006f0851635a6032fd8e3314d6cf6abee (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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit autotools eutils

DESCRIPTION="a simple yet powerful command line cd player"
HOMEPAGE="http://libcdaudio.sourceforge.net"
SRC_URI="mirror://sourceforge/libcdaudio/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ~ppc ppc64 sparc x86"

RDEPEND="
	>=sys-libs/readline-4.2
	>=media-libs/libcdaudio-0.99.4
"
DEPEND="${RDEPEND}"

src_prepare() {
	cp "${FILESDIR}"/${P}-acinclude.m4 "${S}"/acinclude.m4 || die
	epatch "${FILESDIR}"/${P}-configure.patch
	eautoreconf
}

DOCS=( AUTHORS ChangeLog NEWS README )