summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2018-04-01 17:01:28 -0700
committerMatt Turner <mattst88@gentoo.org>2018-04-01 17:01:31 -0700
commit65a6f686043606e1955c44038912412a324b72b1 (patch)
treed07d5d156c258ca9883c9ae5ce6a179feea45108 /net-nntp
parentnet-nntp/xrn-9.02-r1: x86 stable, 649126 (diff)
downloadgentoo-65a6f686043606e1955c44038912412a324b72b1.tar.gz
gentoo-65a6f686043606e1955c44038912412a324b72b1.tar.bz2
gentoo-65a6f686043606e1955c44038912412a324b72b1.zip
net-nntp/xrn: Drop old
Closes: https://bugs.gentoo.org/649126
Diffstat (limited to 'net-nntp')
-rw-r--r--net-nntp/xrn/xrn-9.02.ebuild69
1 files changed, 0 insertions, 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 9c87e2febf47..000000000000
--- 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
-}