From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E74C1382C5 for ; Wed, 2 May 2018 19:28:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DF43E0ACD; Wed, 2 May 2018 19:28:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26B92E0ACD for ; Wed, 2 May 2018 19:28:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9573335C81 for ; Wed, 2 May 2018 19:28:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D87F23A for ; Wed, 2 May 2018 19:28:31 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1525289292.15e0ad0a370365647e9fe619349ed1357f51ffca.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/s25rttr/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-strategy/s25rttr/s25rttr-0.8.1-r3.ebuild X-VCS-Directories: games-strategy/s25rttr/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 15e0ad0a370365647e9fe619349ed1357f51ffca X-VCS-Branch: master Date: Wed, 2 May 2018 19:28:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a72f7c67-2eea-4060-8ed2-116e5a0dbb4b X-Archives-Hash: d4187ee68779ad08aa2f6d710a525042 commit: 15e0ad0a370365647e9fe619349ed1357f51ffca Author: Pacho Ramos gentoo org> AuthorDate: Wed May 2 19:03:01 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed May 2 19:28:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e0ad0a games-strategy/s25rttr: Stop using games.eclass Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-strategy/s25rttr/s25rttr-0.8.1-r3.ebuild | 112 +++++++++++++++++++++++++ 1 file changed, 112 insertions(+) diff --git a/games-strategy/s25rttr/s25rttr-0.8.1-r3.ebuild b/games-strategy/s25rttr/s25rttr-0.8.1-r3.ebuild new file mode 100644 index 00000000000..ac9ed2e6c5f --- /dev/null +++ b/games-strategy/s25rttr/s25rttr-0.8.1-r3.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit eutils cmake-utils gnome2-utils readme.gentoo-r1 + +DESCRIPTION="Open Source remake of The Settlers II game (needs original game files)" +HOMEPAGE="http://www.siedler25.org/" +# no upstream source tarball yet +# https://bugs.launchpad.net/s25rttr/+bug/1069546 +SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND=" + app-arch/bzip2 + media-libs/libsamplerate + media-libs/libsdl[X,sound,opengl,video] + media-libs/libsndfile + media-libs/sdl-mixer[vorbis] + net-libs/miniupnpc + virtual/libiconv + virtual/opengl +" +DEPEND="${RDEPEND} + sys-devel/gettext +" + +PATCHES=( + "${FILESDIR}"/${P}-cmake.patch + "${FILESDIR}"/${P}-soundconverter.patch + "${FILESDIR}"/${P}-fpic.patch + "${FILESDIR}"/${P}-format.patch + "${FILESDIR}"/${P}-miniupnpc-api-14.patch + "${FILESDIR}"/${P}-cmake-3.patch + "${FILESDIR}"/${P}-gcc6.patch +) + +DOC_CONTENTS="Copy your Settlers2 game files into ~/.${PN}/S2" + +src_configure() { + local arch + case ${ARCH} in + amd64) + arch="x86_64" ;; + x86) + arch="i386" ;; + *) die "Architecture ${ARCH} not yet supported" ;; + esac + + local mycmakeargs=( + -DCOMPILEFOR="linux" + -DCOMPILEARCH="${arch}" + -DCMAKE_SKIP_RPATH=YES + -DPREFIX="/usr/" + -DBINDIR="/usr/bin" + -DDATADIR="/usr/share" + -DLIBDIR="/usr/$(get_libdir)/${PN}" + -DDRIVERDIR="/usr/$(get_libdir)/${PN}" + -DGAMEDIR="~/.${PN}/S2" + -DBUILD_GLFW_DRIVER=OFF + ) + + cmake-utils_src_configure +} + +src_compile() { + # work around some relative paths (CMAKE_IN_SOURCE_BUILD not supported) + ln -s "${CMAKE_USE_DIR}"/RTTR "${CMAKE_BUILD_DIR}"/RTTR || die + + cmake-utils_src_compile + + mv "${CMAKE_USE_DIR}"/RTTR/{sound-convert,s-c_resample} "${T}"/ || die +} + +src_install() { + cd "${CMAKE_BUILD_DIR}" || die + + exeinto /usr/"$(get_libdir)"/${PN} + doexe "${T}"/{sound-convert,s-c_resample} + exeinto /usr/"$(get_libdir)"/${PN}/video + doexe driver/video/SDL/src/libvideoSDL.so + exeinto /usr/"$(get_libdir)"/${PN}/audio + doexe driver/audio/SDL/src/libaudioSDL.so + + insinto /usr/share + doins -r "${CMAKE_USE_DIR}"/RTTR + dosym ./LSTS/splash.bmp /usr/share/RTTR/splash.bmp + + doicon -s 64 "${CMAKE_USE_DIR}"/debian/${PN}.png + dobin src/s25client + make_desktop_entry "s25client" "Settlers RTTR" "${PN}" + + dodoc RTTR/texte/{keyboardlayout.txt,readme.txt} + readme.gentoo_create_doc +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update + readme.gentoo_print_elog +} + +pkg_postrm() { + gnome2_icon_cache_update +}