summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-08-03 04:20:55 +0000
committerTim Harder <radhermit@gentoo.org>2014-08-03 04:20:55 +0000
commit7ff4dc17632c13529a8c3dd1ff53727310844ec2 (patch)
tree391a93a132c9adbdf1296b0a3465e953aad91a66
parentMigrate to distutils-r1 and use specific libsfml version dep. (diff)
downloadgentoo-2-7ff4dc17632c13529a8c3dd1ff53727310844ec2.tar.gz
gentoo-2-7ff4dc17632c13529a8c3dd1ff53727310844ec2.tar.bz2
gentoo-2-7ff4dc17632c13529a8c3dd1ff53727310844ec2.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
-rw-r--r--dev-python/pysfml/ChangeLog5
-rw-r--r--dev-python/pysfml/pysfml-1.6.ebuild37
2 files changed, 4 insertions, 38 deletions
diff --git a/dev-python/pysfml/ChangeLog b/dev-python/pysfml/ChangeLog
index 3b685ceb98a3..89829d187981 100644
--- a/dev-python/pysfml/ChangeLog
+++ b/dev-python/pysfml/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pysfml
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/ChangeLog,v 1.4 2014/08/03 04:20:11 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/ChangeLog,v 1.5 2014/08/03 04:20:55 radhermit Exp $
+
+ 03 Aug 2014; Tim Harder <radhermit@gentoo.org> -pysfml-1.6.ebuild:
+ Remove old.
*pysfml-1.6-r1 (03 Aug 2014)
diff --git a/dev-python/pysfml/pysfml-1.6.ebuild b/dev-python/pysfml/pysfml-1.6.ebuild
deleted file mode 100644
index 88ae9494f3c2..000000000000
--- a/dev-python/pysfml/pysfml-1.6.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/pysfml-1.6.ebuild,v 1.3 2012/12/01 00:05:10 radhermit Exp $
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="*-jython"
-
-inherit distutils
-
-DESCRIPTION="Python library for the Simple and Fast Multimedia Library (SFML)"
-HOMEPAGE="http://sfml.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sfml/SFML-${PV}-python-sdk.zip"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-DEPEND="media-libs/libsfml"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/SFML-${PV}/python"
-
-PYTHON_CXXFLAGS=("2.* + -fno-strict-aliasing")
-
-PYTHON_MODNAME="PySFML"
-
-src_install() {
- distutils_src_install
- use doc && dohtml doc/*
-
- if use examples ; then
- insinto /usr/share/doc/${PF}/examples
- doins -r samples/* || die "doins failed"
- fi
-}