summaryrefslogtreecommitdiff
blob: d11bb4fbe6c8f15e70074b9cfc86e451b565aa0b (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/dev-python/eyeD3/eyeD3-0.6.11.ebuild,v 1.1 2007/01/28 21:49:18 dev-zero Exp $

inherit distutils

DESCRIPTION="Module for manipulating ID3 (v1 + v2) tags in Python"
HOMEPAGE="http://eyed3.nicfit.net/"
SRC_URI="http://eyed3.nicfit.net/releases/${P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"

DEPEND=">=dev-lang/python-2.3"
RDEPEND="${DEPEND}"

src_compile() {
	econf || die "econf failed"
	distutils_src_compile
}

src_install() {
	# Not calling make install because
	# we would have to patch it (for example bug #164310)
	# and it's therefore easier to do it manually

	DOCS="AUTHORS NEWS THANKS"
	dohtml README.html && rm README.html

	distutils_src_install

	dobin bin/eyeD3
	doman doc/eyeD3.1
}