summaryrefslogtreecommitdiff
path: root/net-nntp/xrn
diff options
context:
space:
mode:
Diffstat (limited to 'net-nntp/xrn')
-rw-r--r--net-nntp/xrn/Manifest3
-rw-r--r--net-nntp/xrn/metadata.xml5
-rw-r--r--net-nntp/xrn/xrn-9.02-r1.ebuild72
3 files changed, 0 insertions, 80 deletions
diff --git a/net-nntp/xrn/Manifest b/net-nntp/xrn/Manifest
deleted file mode 100644
index 6dcddddafd02..000000000000
--- a/net-nntp/xrn/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST xrn-9.02.tgz 362615 BLAKE2B 710a378a8265a39e5910fbca7ea4778a7fb5282b6529664f7c49bf6d37b8c78535fadfd8eedbbd5150b29c4325e9eb94704adc57e0e3c9be9df749472f5a0d10 SHA512 ea8271b58b374889249686b75926a12ee474a5ed623f4db106bc885a212c8381102d128cc7ebffd12256633a809deb8a66382bea69692c9ba71ccecd481dce2a
-EBUILD xrn-9.02-r1.ebuild 1477 BLAKE2B d7d1a90545f726133587dbbd6f711de57abb0c75cff5d4ec2d8015a29ed3bf04349bd96d864e609bdaecf7c4895380069ce15e65cb6ee55c05adc32121aab046 SHA512 2dafeb9a2f3c63d945318a5f5e56e05412113e3c1c202e5759764809f50e5003360520b5b0860257b6c7fcc2ba1e70af71dab54495423c5a08917efc7e6ee53f
-MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/net-nntp/xrn/metadata.xml b/net-nntp/xrn/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/net-nntp/xrn/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/net-nntp/xrn/xrn-9.02-r1.ebuild b/net-nntp/xrn/xrn-9.02-r1.ebuild
deleted file mode 100644
index 10bad67c4a55..000000000000
--- a/net-nntp/xrn/xrn-9.02-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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="amd64 x86"
-IUSE=""
-
-RDEPEND="
- x11-libs/libICE
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libXaw
- x11-libs/libXext
- x11-libs/libXmu
- x11-libs/libXpm
- x11-libs/libXt
-"
-DEPEND="${RDEPEND}
- x11-misc/imake
-"
-
-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}"
-}
-
-src_install() {
- dobin xrn
- dodoc README README.Linux TODO CREDITS COMMON-PROBLMS
-
- # Default settings:
- insinto /etc/X11/app-defaults
- newins XRn.ad XRn
-
- newman xrn.man xrn.1
-}