diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-09-28 06:50:24 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-09-28 06:50:24 +0000 |
commit | 242bb376a0ae6d8445db7e7e44dd6547711a66b0 (patch) | |
tree | d845ea98f40bf2c7554605849cc4c698bc62ae5b /dev-python/eyeD3 | |
parent | I'm told the parallel-make bug is not there. Dropping -j1 and waiting for a b... (diff) | |
download | gentoo-2-242bb376a0ae6d8445db7e7e44dd6547711a66b0.tar.gz gentoo-2-242bb376a0ae6d8445db7e7e44dd6547711a66b0.tar.bz2 gentoo-2-242bb376a0ae6d8445db7e7e44dd6547711a66b0.zip |
Bump, bug 236319.
(Portage version: 2.2_rc10/cvs/Linux 2.6.25.8 i686)
Diffstat (limited to 'dev-python/eyeD3')
-rw-r--r-- | dev-python/eyeD3/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/eyeD3/eyeD3-0.6.16.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/dev-python/eyeD3/ChangeLog b/dev-python/eyeD3/ChangeLog index 6e67241ea095..2189f809edfc 100644 --- a/dev-python/eyeD3/ChangeLog +++ b/dev-python/eyeD3/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/eyeD3 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v 1.31 2008/05/13 20:04:06 hawking Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/ChangeLog,v 1.32 2008/09/28 06:50:24 loki_val Exp $ + +*eyeD3-0.6.16 (28 Sep 2008) + + 28 Sep 2008; Peter Alfredsen <loki_val@gentoo.org> +eyeD3-0.6.16.ebuild: + Bump, bug 236319. *eyeD3-0.6.15 (13 May 2008) diff --git a/dev-python/eyeD3/eyeD3-0.6.16.ebuild b/dev-python/eyeD3/eyeD3-0.6.16.ebuild new file mode 100644 index 000000000000..d12b90cd9ad2 --- /dev/null +++ b/dev-python/eyeD3/eyeD3-0.6.16.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/eyeD3-0.6.16.ebuild,v 1.1 2008/09/28 06:50:24 loki_val Exp $ + +NEED_PYTHON=2.3 + +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" + +src_compile() { + econf + 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 THANKS" + dohtml README.html && rm README.html + + distutils_src_install + + dobin bin/eyeD3 || die "dobin failed." + doman doc/eyeD3.1 || die "doman failed." +} |