diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-nntp/xrn | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-nntp/xrn')
-rw-r--r-- | net-nntp/xrn/Manifest | 1 | ||||
-rw-r--r-- | net-nntp/xrn/metadata.xml | 5 | ||||
-rw-r--r-- | net-nntp/xrn/xrn-9.02.ebuild | 70 |
3 files changed, 76 insertions, 0 deletions
diff --git a/net-nntp/xrn/Manifest b/net-nntp/xrn/Manifest new file mode 100644 index 000000000000..5223d7f1764a --- /dev/null +++ b/net-nntp/xrn/Manifest @@ -0,0 +1 @@ +DIST xrn-9.02.tgz 362615 SHA256 5fc44883bf94538def846669ebabcc95a710e46531f071ac432d0f9cadc56677 diff --git a/net-nntp/xrn/metadata.xml b/net-nntp/xrn/metadata.xml new file mode 100644 index 000000000000..4d0ebe73a55f --- /dev/null +++ b/net-nntp/xrn/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-news</herd> +</pkgmetadata> diff --git a/net-nntp/xrn/xrn-9.02.ebuild b/net-nntp/xrn/xrn-9.02.ebuild new file mode 100644 index 000000000000..02acf624b9be --- /dev/null +++ b/net-nntp/xrn/xrn-9.02.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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,http://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 +} |