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 1AF8B139694 for ; Mon, 13 Feb 2017 05:57:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 482BBE0C41; Mon, 13 Feb 2017 05:57:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1EEA3E0C41 for ; Mon, 13 Feb 2017 05:57:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF7ED34106E for ; Mon, 13 Feb 2017 05:57:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78083460E for ; Mon, 13 Feb 2017 05:57:20 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1486965031.8ac51403101dbd62f10d2daaeac9c633cc69e082.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/surf/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/surf/surf-0.6-r2.ebuild X-VCS-Directories: www-client/surf/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 8ac51403101dbd62f10d2daaeac9c633cc69e082 X-VCS-Branch: master Date: Mon, 13 Feb 2017 05:57:20 +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: 5d5d961b-6024-48f7-ae2b-0f992ac36b5d X-Archives-Hash: 4653f5c2c3d5b306e6b3390cc97fde2f commit: 8ac51403101dbd62f10d2daaeac9c633cc69e082 Author: Jeroen Roovers gentoo org> AuthorDate: Mon Feb 13 05:50:31 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Feb 13 05:50:31 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac51403 www-client/surf: Old. Package-Manager: Portage-2.3.3, Repoman-2.3.1 www-client/surf/surf-0.6-r2.ebuild | 68 -------------------------------------- 1 file changed, 68 deletions(-) diff --git a/www-client/surf/surf-0.6-r2.ebuild b/www-client/surf/surf-0.6-r2.ebuild deleted file mode 100644 index d724870d21..0000000000 --- a/www-client/surf/surf-0.6-r2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils savedconfig toolchain-funcs - -DESCRIPTION="a simple web browser based on WebKit/GTK+" -HOMEPAGE="http://surf.suckless.org/" -SRC_URI="http://dl.suckless.org/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -COMMON_DEPEND=" - dev-libs/glib:2 - net-libs/libsoup - net-libs/webkit-gtk:2 - x11-libs/gtk+:2 - x11-libs/libX11 -" -DEPEND=" - ${COMMON_DEPEND} - virtual/pkgconfig -" -RDEPEND=" - !sci-chemistry/surf - ${COMMON_DEPEND} - x11-apps/xprop - x11-misc/dmenu - !savedconfig? ( - net-misc/curl - x11-terms/st - ) -" - -pkg_setup() { - if ! use savedconfig; then - elog "The default config.h assumes you have" - elog " net-misc/curl" - elog " x11-terms/st" - elog "installed to support the download function." - elog "Without those, downloads will fail (gracefully)." - elog "You can fix this by:" - elog "1) Installing these packages, or" - elog "2) Setting USE=savedconfig and changing config.h accordingly." - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-gentoo.patch - epatch_user - restore_config config.h - tc-export CC PKG_CONFIG -} - -src_install() { - default - save_config config.h -} - -pkg_postinst() { - if [[ ${REPLACING_VERSIONS} ]] && [[ ${REPLACING_VERSIONS} < 0.4.1-r1 ]]; then - ewarn "Please correct the permissions of your \$HOME/.surf/ directory" - ewarn "and its contents to no longer be world readable (see bug #404983)" - fi -}