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 7E01A1382C5 for ; Mon, 2 Apr 2018 00:01:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72493E0B29; Mon, 2 Apr 2018 00:01:49 +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 4FEB2E0B29 for ; Mon, 2 Apr 2018 00:01:49 +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 EB77733BE95 for ; Mon, 2 Apr 2018 00:01:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F5FC273 for ; Mon, 2 Apr 2018 00:01:45 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1522627291.65a6f686043606e1955c44038912412a324b72b1.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/xrn/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nntp/xrn/xrn-9.02.ebuild X-VCS-Directories: net-nntp/xrn/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 65a6f686043606e1955c44038912412a324b72b1 X-VCS-Branch: master Date: Mon, 2 Apr 2018 00:01:45 +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: 516cdc49-fc1e-4f91-ae30-5dff0db895be X-Archives-Hash: f21f4c3a317ba5675292a664b5f3fde1 commit: 65a6f686043606e1955c44038912412a324b72b1 Author: Matt Turner gentoo org> AuthorDate: Mon Apr 2 00:01:28 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Apr 2 00:01:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a6f686 net-nntp/xrn: Drop old Closes: https://bugs.gentoo.org/649126 net-nntp/xrn/xrn-9.02.ebuild | 69 -------------------------------------------- 1 file changed, 69 deletions(-) diff --git a/net-nntp/xrn/xrn-9.02.ebuild b/net-nntp/xrn/xrn-9.02.ebuild deleted file mode 100644 index 9c87e2febf4..00000000000 --- a/net-nntp/xrn/xrn-9.02.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="A small and fast news reader for X" -HOMEPAGE="http://www.mit.edu/people/jik/software/xrn.html" -SRC_URI="ftp://sipb.mit.edu/pub/${PN}/${P}.tgz" -LICENSE="BSD" -SLOT="0" - -KEYWORDS="x86" -IUSE="" - -RDEPEND="x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libXaw - x11-libs/libXext - x11-libs/libXmu - x11-libs/libXp - x11-libs/libXpm - x11-libs/libXt" -DEPEND="${RDEPEND} - x11-misc/imake - >=sys-apps/sed-4" - -src_compile() { - # English is the default language, but french and german are also - # supported, however only one language may be supported at a time: - local lingua - for lingua in ${LINGUAS} en ; do - case "${lingua}" in - en*) - MY_LANG="english" - break # Breaks the for loop. - ;; - fr*) - MY_LANG="french" - break # Breaks the for loop. - ;; - de*) - MY_LANG="german" - break # Breaks the for loop. - ;; - esac - done - - # Bugs to Gentoo bugzilla: - sed -i \ - -e "s,bug-xrn@kamens.brookline.ma.us,https://bugs.gentoo.org/," \ - -e "s,\(#ifndef CONFIG_H_IS_OK\),#define CONFIG_H_IS_OK\n\1," \ - config.h - - # Generate Makefile: - xmkmf || die "xmkmf failed" - - # Use our own CFLAGS and our desired language: - emake -j1 CDEBUGFLAGS="${CFLAGS}" LANGUAGE="${MY_LANG}" || die "emake failed" -} - -src_install() { - dobin xrn || die "dobin failed" - dodoc README README.Linux TODO CREDITS COMMON-PROBLMS || die "dodoc failed" - - # Default settings: - insinto /etc/X11/app-defaults - newins XRn.ad XRn - - newman xrn.man xrn.1 -}