summaryrefslogtreecommitdiff
path: root/net-irc/bnc
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /net-irc/bnc
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'net-irc/bnc')
-rw-r--r--net-irc/bnc/Manifest1
-rw-r--r--net-irc/bnc/bnc-2.9.4-r3.ebuild56
-rw-r--r--net-irc/bnc/files/bnc-2.9.3-64bit.patch20
-rw-r--r--net-irc/bnc/files/respect-cflags-ldflags.patch90
-rw-r--r--net-irc/bnc/metadata.xml5
5 files changed, 0 insertions, 172 deletions
diff --git a/net-irc/bnc/Manifest b/net-irc/bnc/Manifest
deleted file mode 100644
index 724c656f3f0a..000000000000
--- a/net-irc/bnc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST bnc2.9.4.tar.gz 76896 BLAKE2B fcb09e8c75986d51f69fa4b75458c95419da90789a81b5dbb2504f876d610ed72eb6a15aaae5b18eee03b77a7e374f4f88dc73b67e0daf20cb59d48a5a2dc77a SHA512 131c25624c2a72494f900c6247e5569df48700223664487944ac42b0d892ea62f7d0e67a9ba4609cd936718365075c428e756074e349e1e041186c43cd16da23
diff --git a/net-irc/bnc/bnc-2.9.4-r3.ebuild b/net-irc/bnc/bnc-2.9.4-r3.ebuild
deleted file mode 100644
index 74b4ce5b6175..000000000000
--- a/net-irc/bnc/bnc-2.9.4-r3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic
-
-MY_P="${P/-/}"
-DESCRIPTION="BNC (BouNCe) is used as a gateway to an IRC Server"
-HOMEPAGE="http://gotbnc.com/"
-SRC_URI="http://gotbnc.com/files/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ppc ppc64 ~s390 ~sparc x86"
-IUSE="ssl"
-
-DEPEND="virtual/libcrypt:=
- ssl? ( dev-libs/openssl:0= )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/respect-cflags-ldflags.patch"
- "${FILESDIR}/${PN}-2.9.3-64bit.patch"
-)
-
-src_prepare() {
- default
-
- sed -i -e 's:./mkpasswd:/usr/bin/bncmkpasswd:' bncsetup \
- || die 'failed to rename mkpasswd in bncsetup'
-
- # bug #900076
- eautoreconf
-}
-
-src_configure() {
- # bug #861374
- append-flags -fno-strict-aliasing
- filter-lto
-
- econf $(use_with ssl)
-}
-
-src_install() {
- default
- mv "${ED}"/usr/bin/{,bnc}mkpasswd \
- || die 'failed to rename the mkpasswd executable'
- dodoc example.conf motd
-}
-
-pkg_postinst() {
- einfo 'You can find an example motd/conf file here:'
- einfo " /usr/share/doc/${PF}"
-}
diff --git a/net-irc/bnc/files/bnc-2.9.3-64bit.patch b/net-irc/bnc/files/bnc-2.9.3-64bit.patch
deleted file mode 100644
index 0eb94a4817ce..000000000000
--- a/net-irc/bnc/files/bnc-2.9.3-64bit.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- bnc2.9.3-orig/server.c 2005-02-07 01:29:11.000000000 +0000
-+++ bnc2.9.3/server.c 2005-09-22 18:10:18.000000000 +0100
-@@ -398,7 +398,7 @@
- int send_queued(struct lsock *ls)
- {
- int res;
-- int length;
-+ size_t length;
- char *msg;
-
- while(sbuf_getlength(&ls->sendq) > 0)
-@@ -1114,7 +1114,7 @@
- int dccsend(int fd, struct sbuf *sendq)
- {
- int res;
-- int length;
-+ size_t length;
- char *msg;
-
-
diff --git a/net-irc/bnc/files/respect-cflags-ldflags.patch b/net-irc/bnc/files/respect-cflags-ldflags.patch
deleted file mode 100644
index ce3c30ecf63d..000000000000
--- a/net-irc/bnc/files/respect-cflags-ldflags.patch
+++ /dev/null
@@ -1,90 +0,0 @@
-From e5663f7b7bd506b7af2ee7ab2e68722ade1f2a03 Mon Sep 17 00:00:00 2001
-From: Michael Orlitzky <michael@orlitzky.com>
-Date: Sun, 28 Aug 2016 16:06:09 -0400
-Subject: [PATCH 1/1] autotools: fix --with-ssl option and respect
- {C,CPP,LD}FLAGS.
-
-Patch the build system to support LDFLAGS. This is a new revision of
-an existing Gentoo patch that made the build system support CFLAGS,
-and incorporates binki's patch from our bugzilla to add CPPFLAGS
-support.
-
-The --with-ssl option is also fixed in configure.in (it was
-missing a dash).
-
-Gentoo-Bug: 338181
----
- Makefile.in | 32 +++++++++++++++++++++-----------
- configure.in | 2 +-
- 2 files changed, 22 insertions(+), 12 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index b7c9733..f28a355 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -1,28 +1,38 @@
- LIBS=@LIBS@
--CFLAGS=-O3 -Wall -include config.h
-+CFLAGS=@CFLAGS@ -Wall
-+CPPFLAGS = -include config.h @CPPFLAGS@
- CC=@CC@
-
--ALL: bnc mkpasswd
-+DESTDIR =
-+prefix = @prefix@
-+exec_prefix = @exec_prefix@
-+bindir = @bindir@
-+
-+all ALL: bnc mkpasswd
-+
-+install: bnc mkpasswd
-+ install -m 755 -d $(DESTDIR)$(bindir)
-+ install -m 755 bnc mkpasswd bncchk bncsetup $(DESTDIR)$(bindir)
-
- mkpasswd:mkpasswd.c
-- ${CC} ${CFLAGS} -o mkpasswd mkpasswd.c ${LIBS}
-+ ${CC} ${CFLAGS} -o mkpasswd mkpasswd.c ${LIBS} ${LDFLAGS}
- bnc: bnc.o conf.o server.o cmds.o ctcp.o send.o sbuf.o Makefile
-- ${CC} -o bnc bnc.o conf.o server.o cmds.o ctcp.o sbuf.o send.o ${LIBS}
-+ ${CC} -o bnc bnc.o conf.o server.o cmds.o ctcp.o sbuf.o send.o ${LIBS} ${LDFLAGS}
-
- bnc.o: config.h struct.h bnc.c Makefile
-- ${CC} ${CFLAGS} -c bnc.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c bnc.c
- conf.o: config.h struct.h conf.c Makefile
-- ${CC} ${CFLAGS} -c conf.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c conf.c
- cmds.o: config.h struct.h cmds.c Makefile
-- ${CC} ${CFLAGS} -c cmds.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c cmds.c
- ctcp.o: config.h ctcp.c Makefile
-- ${CC} ${CFLAGS} -c ctcp.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c ctcp.c
- server.o: config.h struct.h server.c Makefile
-- ${CC} ${CFLAGS} -c server.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c server.c
- send.o: send.c send.h Makefile
-- ${CC} ${CFLAGS} -c send.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c send.c
- sbuf.o: sbuf.c
-- ${CC} ${CFLAGS} -c sbuf.c
-+ ${CC} ${CPPFLAGS} ${CFLAGS} -c sbuf.c
-
- clean:
- rm -rf *.o *~ core bnc mkpasswd
-diff --git a/configure.in b/configure.in
-index be17af3..3552eb1 100644
---- a/configure.in
-+++ b/configure.in
-@@ -35,7 +35,7 @@ AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt",)
- dnl Check for SSL support.
- AC_MSG_CHECKING(whether to enable SSL support)
- AC_ARG_WITH(ssl,
--[ -with-ssl Enable SSL support],
-+[ --with-ssl Enable SSL support],
- [ case "$withval" in
- yes)
- AC_MSG_RESULT(yes)
---
-2.7.3
-
diff --git a/net-irc/bnc/metadata.xml b/net-irc/bnc/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/net-irc/bnc/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>