radhermit 14/08/03 04:20:12 Modified: ChangeLog Added: pysfml-1.6-r1.ebuild Log: Migrate to distutils-r1 and use specific libsfml version dep. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.4 dev-python/pysfml/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pysfml/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 1 Dec 2012 00:05:10 -0000 1.3 +++ ChangeLog 3 Aug 2014 04:20:11 -0000 1.4 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pysfml -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/ChangeLog,v 1.3 2012/12/01 00:05:10 radhermit Exp $ +# 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 $ + +*pysfml-1.6-r1 (03 Aug 2014) + + 03 Aug 2014; Tim Harder <[email protected]> +pysfml-1.6-r1.ebuild: + Migrate to distutils-r1 and use specific libsfml version dep. 01 Dec 2012; Tim Harder <[email protected]> pysfml-1.6.ebuild: Fix LICENSE (bug #445426 by ulm). 1.1 dev-python/pysfml/pysfml-1.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/pysfml-1.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/pysfml-1.6-r1.ebuild?rev=1.1&content-type=text/plain Index: pysfml-1.6-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/pysfml-1.6-r1.ebuild,v 1.1 2014/08/03 04:20:11 radhermit Exp $ EAPI="5" PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 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-${PV}" RDEPEND="${DEPEND}" S=${WORKDIR}/SFML-${PV}/python python_compile() { if [[ ${EPYTHON} == python2* ]] ; then local CFLAGS="${CFLAGS} -fno-strict-aliasing" export CFLAGS fi distutils-r1_python_compile } python_install_all() { distutils-r1_python_install_all use doc && dohtml doc/* if use examples ; then insinto /usr/share/doc/${PF}/examples doins -r samples/* || die "doins failed" fi }
