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-p2p/opendchub | |
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-p2p/opendchub')
-rw-r--r-- | net-p2p/opendchub/Manifest | 1 | ||||
-rw-r--r-- | net-p2p/opendchub/files/0.7.14-overflow.patch | 12 | ||||
-rw-r--r-- | net-p2p/opendchub/files/0.7.14-telnet.patch | 12 | ||||
-rw-r--r-- | net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch | 11 | ||||
-rw-r--r-- | net-p2p/opendchub/files/opendchub-gentoo.patch | 30 | ||||
-rw-r--r-- | net-p2p/opendchub/files/opendchub_setup.sh | 20 | ||||
-rw-r--r-- | net-p2p/opendchub/metadata.xml | 8 | ||||
-rw-r--r-- | net-p2p/opendchub/opendchub-0.8.2.ebuild | 50 |
8 files changed, 144 insertions, 0 deletions
diff --git a/net-p2p/opendchub/Manifest b/net-p2p/opendchub/Manifest new file mode 100644 index 000000000000..b99e607888b4 --- /dev/null +++ b/net-p2p/opendchub/Manifest @@ -0,0 +1 @@ +DIST opendchub-0.8.2.tar.gz 188551 SHA256 c00d5859fde939741699026da9d4d5fd0b409474608353710204c3c78a8ac5bf diff --git a/net-p2p/opendchub/files/0.7.14-overflow.patch b/net-p2p/opendchub/files/0.7.14-overflow.patch new file mode 100644 index 000000000000..996ff65fd0ae --- /dev/null +++ b/net-p2p/opendchub/files/0.7.14-overflow.patch @@ -0,0 +1,12 @@ +diff -Naur opendchub-0.7.14.vanilla/src/commands.c opendchub-0.7.14/src/commands.c +--- opendchub-0.7.14.vanilla/src/commands.c 2003-11-15 08:07:43.000000000 -0600 ++++ opendchub-0.7.14/src/commands.c 2004-11-27 09:54:57.113410240 -0600 +@@ -2842,7 +2842,7 @@ + { + char move_string[MAX_HOST_LEN+20]; + +- sprintf(move_string, "$ForceMove %s", buf); ++ snprintf(move_string, MAX_HOST_LEN, "$ForceMove %s", buf); + + send_to_humans(move_string, REGULAR | REGISTERED | OP, user); + remove_all(UNKEYED | NON_LOGGED | REGULAR | REGISTERED | OP, 1, 1); diff --git a/net-p2p/opendchub/files/0.7.14-telnet.patch b/net-p2p/opendchub/files/0.7.14-telnet.patch new file mode 100644 index 000000000000..f5254cbbbe11 --- /dev/null +++ b/net-p2p/opendchub/files/0.7.14-telnet.patch @@ -0,0 +1,12 @@ +diff -Naur opendchub-0.7.14.vanilla/src/main.c opendchub-0.7.14/src/main.c +--- opendchub-0.7.14.vanilla/src/main.c 2003-11-15 08:01:16.000000000 -0600 ++++ opendchub-0.7.14/src/main.c 2004-08-23 15:58:33.119710184 -0500 +@@ -1056,7 +1056,7 @@ + /* The chat command, starts with <nick> */
+ else if(*temp == '<')
+ {
+- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0)
++ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0)
+ chat(temp, user);
+ }
+
diff --git a/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch b/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch new file mode 100644 index 000000000000..f81bf44cbc69 --- /dev/null +++ b/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch @@ -0,0 +1,11 @@ +--- opendchub-0.8.2/src/main.c.orig ++++ opendchub-0.8.2/src/main.c +@@ -1073,7 +1073,7 @@ + /* The chat command, starts with <nick> */ + else if(*temp == '<') + { +- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0) ++ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0) + chat(temp, user); + } + diff --git a/net-p2p/opendchub/files/opendchub-gentoo.patch b/net-p2p/opendchub/files/opendchub-gentoo.patch new file mode 100644 index 000000000000..c6854e2178ca --- /dev/null +++ b/net-p2p/opendchub/files/opendchub-gentoo.patch @@ -0,0 +1,30 @@ +--- configure~ 2004-04-11 18:31:55.000000000 +0000 ++++ configure 2004-04-11 18:40:42.068793280 +0000 +@@ -4343,12 +4343,6 @@ + fi + fi + +-if test ! -d $HOME/.opendchub; then +- echo "creating config directory: $HOME/.opendchub" +- mkdir $HOME/.opendchub +- chmod 700 $HOME/.opendchub; +-fi +- + # Check whether --enable-perl or --disable-perl was given. + if test "${enable_perl+set}" = set; then + enableval="$enable_perl" +@@ -4406,14 +4400,6 @@ + + perl_libs=`perl -MExtUtils::Embed -e ldopts` + +- if test ! -d $HOME/.opendchub/scripts; then +- echo "creating script directory: $HOME/.opendchub/scripts" +- mkdir $HOME/.opendchub/scripts +- chmod 700 $HOME/.opendchub/scripts; +- for i in Samplescripts/*; do +- cp $i $HOME/.opendchub/scripts; +- done +- fi + fi + else + echo "Perl script support is disabled." diff --git a/net-p2p/opendchub/files/opendchub_setup.sh b/net-p2p/opendchub/files/opendchub_setup.sh new file mode 100644 index 000000000000..2944a02c395e --- /dev/null +++ b/net-p2p/opendchub/files/opendchub_setup.sh @@ -0,0 +1,20 @@ +#!/bin/bash +if test ! -d $HOME/.opendchub; then + echo "creating config directory: $HOME/.opendchub" + mkdir $HOME/.opendchub + chmod 700 $HOME/.opendchub +else + echo "$HOME/.opendchub already exists!" +fi +if test ! -d $HOME/.opendchub/scripts; then + echo "creating script directory: $HOME/.opendchub/scripts" + mkdir $HOME/.opendchub/scripts + chmod 700 $HOME/.opendchub/scripts; + echo "copying scripts..." + for i in /usr/share/opendchub/scripts/*; do + cp $i $HOME/.opendchub/scripts; + done +else + echo "$HOME/.opendchub/scripts already exists!" +fi +echo "done!" diff --git a/net-p2p/opendchub/metadata.xml b/net-p2p/opendchub/metadata.xml new file mode 100644 index 000000000000..66c6da71d708 --- /dev/null +++ b/net-p2p/opendchub/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>net-p2p</herd> + <upstream> + <remote-id type="sourceforge">opendchub</remote-id> + </upstream> +</pkgmetadata> diff --git a/net-p2p/opendchub/opendchub-0.8.2.ebuild b/net-p2p/opendchub/opendchub-0.8.2.ebuild new file mode 100644 index 000000000000..ce857bc4350f --- /dev/null +++ b/net-p2p/opendchub/opendchub-0.8.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools eutils + +DESCRIPTION="hub software for Direct Connect" +HOMEPAGE="http://opendchub.sf.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc x86" +IUSE="perl" + +RDEPEND="perl? ( dev-lang/perl )" +DEPEND="${RDEPEND}" + +DOCS="NEWS TODO README AUTHORS Documentation/*" + +src_prepare() { + epatch "${FILESDIR}"/${P}-telnet.patch + eautoreconf +} + +src_configure() { + use perl || myconf="--disable-perl --enable-switch_user" + econf ${myconf} +} + +src_install() { + default + + if use perl ; then + dobin "${FILESDIR}"/opendchub_setup.sh + insinto /usr/share/opendchub/scripts + doins Samplescripts/* + fi +} + +pkg_postinst() { + if use perl ; then + echo + einfo "To set up perl scripts for opendchub to use, please run" + einfo "opendchub_setup.sh as the user you will be using opendchub as." + echo + fi +} |