diff options
author | 2023-11-10 17:16:44 +0100 | |
---|---|---|
committer | 2023-11-10 17:19:33 +0100 | |
commit | e7941abe9fcf8b6c2a939edd8c1801616b3136b4 (patch) | |
tree | d63a38b54e6ba01a2cf93557aee255770ce1adf7 /media-libs/libsfml/libsfml-2.6.1.ebuild | |
parent | sys-firmware/sof-firmware: add 2023.09.1 (diff) | |
download | gentoo-e7941abe9fcf8b6c2a939edd8c1801616b3136b4.tar.gz gentoo-e7941abe9fcf8b6c2a939edd8c1801616b3136b4.tar.bz2 gentoo-e7941abe9fcf8b6c2a939edd8c1801616b3136b4.zip |
media-libs/libsfml: add 2.6.1
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'media-libs/libsfml/libsfml-2.6.1.ebuild')
-rw-r--r-- | media-libs/libsfml/libsfml-2.6.1.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/media-libs/libsfml/libsfml-2.6.1.ebuild b/media-libs/libsfml/libsfml-2.6.1.ebuild new file mode 100644 index 000000000000..eb139865f848 --- /dev/null +++ b/media-libs/libsfml/libsfml-2.6.1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Simple and Fast Multimedia Library (SFML)" +HOMEPAGE="https://www.sfml-dev.org/ https://github.com/SFML/SFML" +SRC_URI="https://github.com/SFML/SFML/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0/$(ver_cut 1-2)" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="debug doc examples" + +RDEPEND=" + media-libs/flac:= + media-libs/freetype:2 + media-libs/libjpeg-turbo:= + media-libs/libogg + media-libs/libpng:= + media-libs/libvorbis + media-libs/openal + sys-libs/zlib + virtual/opengl + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXrandr + x11-libs/libxcb + x11-libs/xcb-util-image + kernel_linux? ( virtual/libudev:= ) +" +DEPEND="${RDEPEND} + x11-base/xorg-proto" +BDEPEND=" + doc? ( app-doc/doxygen ) +" + +DOCS=( changelog.md readme.md ) + +PATCHES=( "${FILESDIR}"/libsfml-2.6.0-supress-werror.patch ) + +S="${WORKDIR}/SFML-${PV}" + +src_prepare() { + sed -i "s:DESTINATION .*:DESTINATION /usr/share/doc/${PF}:" \ + doc/CMakeLists.txt || die + + find examples -name CMakeLists.txt -delete || die + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DSFML_BUILD_DOC=$(usex doc) + -DSFML_INSTALL_PKGCONFIG_FILES=TRUE + ) + + cmake_src_configure +} + +src_install() { + cmake_src_install + + insinto /usr/share/cmake/Modules + doins cmake/SFMLConfig.cmake.in + doins cmake/SFMLConfigDependencies.cmake.in + + if use examples ; then + docompress -x /usr/share/doc/${PF}/examples + dodoc -r examples + fi +} |