gentoo/dev-python/pyid3lib/pyid3lib-0.5.1-r2.ebuild
Agostino Sarubbo 66f04bb939
dev-python/pyid3lib: ia64 stable wrt bug #593124
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
2017-01-17 15:23:10 +01:00

35 lines
658 B
Bash

# Copyright 1999-2017 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
}