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 00623138334 for ; Sun, 14 Oct 2018 23:36:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF8C8E086F; Sun, 14 Oct 2018 23:36:33 +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 9C005E086F for ; Sun, 14 Oct 2018 23:36:33 +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 3710B335CCC for ; Sun, 14 Oct 2018 23:36:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DD09438 for ; Sun, 14 Oct 2018 23:36:22 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1539560171.d98969b8107ae3c3e6e8bc706c1c0e7b961016c3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/arx-libertatis/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/arx-libertatis/arx-libertatis-1.1.2-r1.ebuild X-VCS-Directories: games-rpg/arx-libertatis/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d98969b8107ae3c3e6e8bc706c1c0e7b961016c3 X-VCS-Branch: master Date: Sun, 14 Oct 2018 23:36:22 +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: 04ab99a9-e46b-4f54-ac29-d82b623aa98e X-Archives-Hash: 72309e2028534924f0a813227ec54b39 commit: d98969b8107ae3c3e6e8bc706c1c0e7b961016c3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 14 23:34:38 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 14 23:36:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98969b8 games-rpg/arx-libertatis: Drop 1.1.2-r1 Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 .../arx-libertatis/arx-libertatis-1.1.2-r1.ebuild | 105 --------------------- 1 file changed, 105 deletions(-) diff --git a/games-rpg/arx-libertatis/arx-libertatis-1.1.2-r1.ebuild b/games-rpg/arx-libertatis/arx-libertatis-1.1.2-r1.ebuild deleted file mode 100644 index f76f90c792f..00000000000 --- a/games-rpg/arx-libertatis/arx-libertatis-1.1.2-r1.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -CMAKE_WARN_UNUSED_CLI=yes -inherit eutils cmake-utils gnome2-utils games - -DESCRIPTION="Cross-platform port of Arx Fatalis, a first-person role-playing game" -HOMEPAGE="https://arx-libertatis.org/" -SRC_URI="mirror://sourceforge/arx/${P}/${P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="c++0x crash-reporter debug static tools +unity-build" - -COMMON_DEPEND=" - media-libs/freetype - media-libs/libsdl[X,video,opengl] - media-libs/openal - sys-libs/zlib - virtual/opengl - crash-reporter? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5[ssl] - dev-qt/qtwidgets:5 - ) - !static? ( media-libs/glew )" -RDEPEND="${COMMON_DEPEND} - crash-reporter? ( sys-devel/gdb )" -DEPEND="${COMMON_DEPEND} - dev-libs/boost - virtual/pkgconfig - static? ( media-libs/glew[static-libs] )" - -DOCS=( README.md AUTHORS CHANGELOG ) - -PATCHES=( "${FILESDIR}"/${P}-cmake-3.5.patch ) - -src_prepare() { - cmake-utils_src_prepare -} - -src_configure() { - # editor does not build - local mycmakeargs=( - $(cmake-utils_use_build crash-reporter CRASHREPORTER) - -DBUILD_EDITOR=OFF - $(cmake-utils_use_build tools TOOLS) - -DCMAKE_INSTALL_DATAROOTDIR="${GAMES_DATADIR_BASE}" - -DCMAKE_INSTALL_PREFIX="${GAMES_PREFIX}" - $(cmake-utils_use debug DEBUG) - -DGAMESBINDIR="${GAMES_BINDIR}" - -DICONDIR=/usr/share/icons/hicolor/128x128/apps - -DINSTALL_SCRIPTS=ON - -DSET_OPTIMIZATION_FLAGS=OFF - -DSTRICT_USE=ON - $(cmake-utils_use unity-build UNITY_BUILD) - $(cmake-utils_use_use c++0x CXX11) - -DUSE_NATIVE_FS=ON - -DUSE_OPENAL=ON - -DUSE_OPENGL=ON - -DUSE_SDL=ON - $(usex crash-reporter "-DUSE_QT5=ON" "") - $(cmake-utils_use_use static STATIC_LIBS) - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_install() { - cmake-utils_src_install - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - elog "optional dependencies:" - elog " games-rpg/arx-fatalis-data (from CD or GOG)" - elog " games-rpg/arx-fatalis-demo (free demo)" - elog - elog "This package only installs the game binary." - elog "You need the demo or full game data. Also see:" - elog "http://wiki.arx-libertatis.org/Getting_the_game_data" - elog - elog "If you have already installed the game or use the STEAM version," - elog "run \"${GAMES_BINDIR}/arx-install-data\"" - - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}