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 1287A1396D0 for ; Sun, 3 Sep 2017 10:30:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43701E0BC7; Sun, 3 Sep 2017 10:30:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 13D0EE0BC7 for ; Sun, 3 Sep 2017 10:30:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D8685341236 for ; Sun, 3 Sep 2017 10:30:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9221E8C68 for ; Sun, 3 Sep 2017 10:30:24 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1504434470.5a9a794f707f4c7e851ba1400f8a12136ee1a2a8.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: games-board/aisleriot/ X-VCS-Repository: proj/gnome X-VCS-Files: games-board/aisleriot/aisleriot-3.22.0.ebuild games-board/aisleriot/aisleriot-3.22.1.ebuild X-VCS-Directories: games-board/aisleriot/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 5a9a794f707f4c7e851ba1400f8a12136ee1a2a8 X-VCS-Branch: master Date: Sun, 3 Sep 2017 10:30:24 +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: 5468793b-9dc7-493e-b6e4-2ca3dd002ad7 X-Archives-Hash: b7a115ea69e6cc2de8f6e38e772c9e7b commit: 5a9a794f707f4c7e851ba1400f8a12136ee1a2a8 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Sep 3 10:27:50 2017 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Sep 3 10:27:50 2017 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=5a9a794f games-board/aisleriot: cleanup old revisions Package-Manager: Portage-2.3.8, Repoman-2.3.3 Manifest-Sign-Key: 0x5A56C8CD0C13248A games-board/aisleriot/aisleriot-3.22.0.ebuild | 86 --------------------------- games-board/aisleriot/aisleriot-3.22.1.ebuild | 86 --------------------------- 2 files changed, 172 deletions(-) diff --git a/games-board/aisleriot/aisleriot-3.22.0.ebuild b/games-board/aisleriot/aisleriot-3.22.0.ebuild deleted file mode 100644 index 9e0f323c..00000000 --- a/games-board/aisleriot/aisleriot-3.22.0.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit autotools gnome2 - -DESCRIPTION="A collection of solitaire card games for GNOME" -HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Aisleriot" - -LICENSE="GPL-3 LGPL-3 FDL-1.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug gnome qt5" - -# FIXME: quartz support? -# Does not build with guile-2.0.0 or 2.0.1 -COMMON_DEPEND=" - >=dev-libs/glib-2.32:2 - >=dev-scheme/guile-2.0.5:12[deprecated,regex] - >=gnome-base/librsvg-2.32:2 - >=media-libs/libcanberra-0.26[gtk3] - >=x11-libs/cairo-1.10 - >=x11-libs/gtk+-3.4:3 - gnome? ( >=gnome-base/gconf-2.0:2 ) - qt5? ( >=dev-qt/qtsvg-5:5 ) -" -DEPEND="${COMMON_DEPEND} - app-arch/gzip - app-text/yelp-tools - >=dev-util/intltool-0.40.4 - gnome-base/gnome-common - sys-apps/lsb-release - >=sys-devel/gettext-0.12 - virtual/pkgconfig - gnome? ( app-text/docbook-xml-dtd:4.3 ) -" - -src_prepare() { - # Fix SVG detection and usage - eapply "${FILESDIR}"/${PN}-3.22.0-detect-svg.patch - - eautoreconf - gnome2_src_prepare -} - -src_configure() { - local myconf=() - - if use gnome; then - myconf+=( - --with-platform=gnome - --with-help-method=ghelp - ) - else - myconf+=( - --with-platform=gtk-only - --with-help-method=library - ) - fi - - if use qt5 ; then - myconf+=( - --with-card-theme-formats=all - --with-kde-card-theme-path="${EPREFIX}"/usr/share/apps/carddecks - ) - else - myconf+=( --with-card-theme-formats=svg,fixed,pysol ) - fi - - gnome2_src_configure \ - --with-gtk=3.0 \ - --with-guile=2.0 \ - $(usex debug --enable-debug=yes --enable-debug=minimum) \ - --enable-sound \ - --with-pysol-card-theme-path="${EPREFIX}${GAMES_DATADIR}"/pysolfc \ - ${myconf[@]} -} - -pkg_postinst() { - gnome2_pkg_postinst - - elog "Aisleriot can use additional card themes from games-board/pysolfc" - elog "and kde-base/libkdegames." -} diff --git a/games-board/aisleriot/aisleriot-3.22.1.ebuild b/games-board/aisleriot/aisleriot-3.22.1.ebuild deleted file mode 100644 index 9e0f323c..00000000 --- a/games-board/aisleriot/aisleriot-3.22.1.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit autotools gnome2 - -DESCRIPTION="A collection of solitaire card games for GNOME" -HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Aisleriot" - -LICENSE="GPL-3 LGPL-3 FDL-1.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug gnome qt5" - -# FIXME: quartz support? -# Does not build with guile-2.0.0 or 2.0.1 -COMMON_DEPEND=" - >=dev-libs/glib-2.32:2 - >=dev-scheme/guile-2.0.5:12[deprecated,regex] - >=gnome-base/librsvg-2.32:2 - >=media-libs/libcanberra-0.26[gtk3] - >=x11-libs/cairo-1.10 - >=x11-libs/gtk+-3.4:3 - gnome? ( >=gnome-base/gconf-2.0:2 ) - qt5? ( >=dev-qt/qtsvg-5:5 ) -" -DEPEND="${COMMON_DEPEND} - app-arch/gzip - app-text/yelp-tools - >=dev-util/intltool-0.40.4 - gnome-base/gnome-common - sys-apps/lsb-release - >=sys-devel/gettext-0.12 - virtual/pkgconfig - gnome? ( app-text/docbook-xml-dtd:4.3 ) -" - -src_prepare() { - # Fix SVG detection and usage - eapply "${FILESDIR}"/${PN}-3.22.0-detect-svg.patch - - eautoreconf - gnome2_src_prepare -} - -src_configure() { - local myconf=() - - if use gnome; then - myconf+=( - --with-platform=gnome - --with-help-method=ghelp - ) - else - myconf+=( - --with-platform=gtk-only - --with-help-method=library - ) - fi - - if use qt5 ; then - myconf+=( - --with-card-theme-formats=all - --with-kde-card-theme-path="${EPREFIX}"/usr/share/apps/carddecks - ) - else - myconf+=( --with-card-theme-formats=svg,fixed,pysol ) - fi - - gnome2_src_configure \ - --with-gtk=3.0 \ - --with-guile=2.0 \ - $(usex debug --enable-debug=yes --enable-debug=minimum) \ - --enable-sound \ - --with-pysol-card-theme-path="${EPREFIX}${GAMES_DATADIR}"/pysolfc \ - ${myconf[@]} -} - -pkg_postinst() { - gnome2_pkg_postinst - - elog "Aisleriot can use additional card themes from games-board/pysolfc" - elog "and kde-base/libkdegames." -}