gentoo/dev-python/pyid3lib/pyid3lib-0.5.1-r2.ebuild
Tobias Klausmann 9fb2d272e2
dev-python/pyid3lib-0.5.1-r2: stable on amd64
Gentoo-Bug: 593124
2016-12-20 16:19:00 +01:00

35 lines
663 B
Bash

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Module for manipulating ID3 tags in Python"
HOMEPAGE="http://pyid3lib.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND="media-libs/id3lib"
RDEPEND="${DEPEND}"
HTML_DOCS=( doc.html )
src_prepare() {
local PATCHES=(
"${FILESDIR}/${P}-gcc-4.4.patch"
"${FILESDIR}/${P}-py25.patch"
)
distutils-r1_src_prepare
append-flags -fno-strict-aliasing
}