diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-24 23:19:39 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-24 23:19:39 +0000 |
commit | 5fc60f292cdcc310b317f34e3222fc8f00cc05b6 (patch) | |
tree | 2719e4e157d4503710d323b018caf2b9c2836507 /dev-python/pycdio | |
parent | Update HOMEPAGE. (diff) | |
download | historical-5fc60f292cdcc310b317f34e3222fc8f00cc05b6.tar.gz historical-5fc60f292cdcc310b317f34e3222fc8f00cc05b6.tar.bz2 historical-5fc60f292cdcc310b317f34e3222fc8f00cc05b6.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/pycdio')
-rw-r--r-- | dev-python/pycdio/pycdio-0.13.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/pycdio/pycdio-0.13.ebuild b/dev-python/pycdio/pycdio-0.13.ebuild deleted file mode 100644 index 60dae92b7a7f..000000000000 --- a/dev-python/pycdio/pycdio-0.13.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pycdio/pycdio-0.13.ebuild,v 1.3 2008/05/29 14:21:17 hawking Exp $ - -inherit eutils distutils flag-o-matic multilib - -DESCRIPTION="pycdio is a Python interface to the CD Input and Control library (libcdio)" -HOMEPAGE="http://savannah.gnu.org/projects/libcdio/" -SRC_URI="http://ftp.gnu.org/gnu/libcdio/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -RDEPEND="virtual/python - dev-libs/libcdio" - -DEPEND="${RDEPEND} - dev-lang/swig" - -PYTHON_MODNAME="" - -src_unpack() { - unpack ${A} - cd "${S}" - - # remove obsolete sys.path and adjust 'data' path in examples - sed -i -e "s:^sys.path.insert.*::" -e "s:\.\./data:./data:g" example/*.py.in -} - -src_compile() { - # -fPIC is needed for shared objects on some platforms (amd64 and others) - append-flags -fPIC - - distutils_src_compile -} - -src_install(){ - make DESTDIR="${D}" install || die "make install failed." - chmod a+x "${D}"usr/$(get_libdir)/python*/site-packages/*.so - rm -f "${D}"usr/$(get_libdir)/python*/site-packages/*.py[co] - - dodoc AUTHORS NEWS README - - if use doc; then - insinto /usr/share/doc/${PF}/examples - doins example/{README,*.py} - doins -r data - fi -} - -pkg_postinst() { - python_version - python_mod_compile \ - /usr/$(get_libdir)/python${PYVER}/site-packages/{,py}{cdio,iso9660}.py -} |