diff options
Diffstat (limited to 'media-libs/libsfml/libsfml-2.1.ebuild')
-rw-r--r-- | media-libs/libsfml/libsfml-2.1.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/media-libs/libsfml/libsfml-2.1.ebuild b/media-libs/libsfml/libsfml-2.1.ebuild deleted file mode 100644 index 1730b61..0000000 --- a/media-libs/libsfml/libsfml-2.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=5 - -inherit cmake-utils eutils - -MY_P=SFML-${PV} - -DESCRIPTION="Simple and Fast Multimedia Library (SFML)" -HOMEPAGE="http://sfml.sourceforge.net/ https://github.com/LaurentGomila/SFML" -SRC_URI="https://github.com/LaurentGomila/SFML/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc examples" - -RDEPEND="media-libs/freetype:2 - media-libs/glew - media-libs/libpng:0= - media-libs/libsndfile - media-libs/mesa - media-libs/openal - sys-libs/zlib - virtual/jpeg - x11-libs/libX11 - x11-libs/libXrandr" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -DOCS="readme.txt" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.0_pre20121126-no-docs.patch - epatch "${FILESDIR}"/${PN}-2.0_pre20121126-shared-glew.patch - - sed -i "s:DESTINATION .*:DESTINATION /usr/share/doc/${PF}:" \ - doc/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use doc SFML_BUILD_DOC) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - docompress -x /usr/share/doc/${PF}/examples - dodoc -r examples - find "${ED}"/usr/share/doc/${PF}/examples -name CMakeLists.txt -delete - fi -} |