summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Briesenick <sbriesen@gentoo.org>2008-05-14 23:02:38 +0000
committerStefan Briesenick <sbriesen@gentoo.org>2008-05-14 23:02:38 +0000
commitce05ce0b57baef4fa2f1f3142d3814e84960bf31 (patch)
tree48ca82fd28e81b8089d729114c668cca3d686b05 /dev-python
parentDepend on virtual/pam as the code builds fine with OpenPAM. (diff)
downloadgentoo-2-ce05ce0b57baef4fa2f1f3142d3814e84960bf31.tar.gz
gentoo-2-ce05ce0b57baef4fa2f1f3142d3814e84960bf31.tar.bz2
gentoo-2-ce05ce0b57baef4fa2f1f3142d3814e84960bf31.zip
removed old version
(Portage version: 2.1.5_rc7)
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pycdio/ChangeLog7
-rw-r--r--dev-python/pycdio/pycdio-0.12.ebuild56
2 files changed, 5 insertions, 58 deletions
diff --git a/dev-python/pycdio/ChangeLog b/dev-python/pycdio/ChangeLog
index b516bd107257..ef4934521941 100644
--- a/dev-python/pycdio/ChangeLog
+++ b/dev-python/pycdio/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pycdio
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycdio/ChangeLog,v 1.2 2007/11/17 23:19:53 sbriesen Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pycdio/ChangeLog,v 1.3 2008/05/14 23:02:38 sbriesen Exp $
+
+ 14 May 2008; Stefan Briesenick <sbriesen@gentoo.org> -pycdio-0.12.ebuild:
+ removed old version
*pycdio-0.13 (17 Nov 2007)
diff --git a/dev-python/pycdio/pycdio-0.12.ebuild b/dev-python/pycdio/pycdio-0.12.ebuild
deleted file mode 100644
index f5b57637afe9..000000000000
--- a/dev-python/pycdio/pycdio-0.12.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pycdio/pycdio-0.12.ebuild,v 1.1 2007/05/16 22:09:01 sbriesen 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"
-
-DEPEND="virtual/python
- dev-libs/libcdio
- 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
- for pymod in cdio pycdio iso9660 pyiso9660; do
- python_mod_compile ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}.py
- done
-}