Bug 38150 - [Maintainer-Update] Remove big binary from irc/bitchx
Summary: [Maintainer-Update] Remove big binary from irc/bitchx
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-16 15:50 UTC by Tilman Linneweh
Modified: 2002-05-16 18:24 UTC (History)
1 user (show)

See Also:


Attachments
file.diff (654 bytes, patch)
2002-05-16 15:50 UTC, Tilman Linneweh
no flags Details | Diff
file.diff (242 bytes, patch)
2002-05-16 15:50 UTC, Tilman Linneweh
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tilman Linneweh 2002-05-16 15:50:01 UTC
	Yesterday the 1.0c19 version of tcl.o was put into the Repository.
	This file has grown 5x since last version. It's time to remove it from 
	the Repository. Please remove files/tcl-freebsd.o.uu
 
	Requested by: will

Fix: MAINTAINER=    freebsdports@arved.de

 WRKSRC=                ${WRKDIR}/BitchX
-
 GNU_CONFIGURE= yes
 USE_GMAKE=     yes
 WANT_ESOUND=   yes
@@ -52,8 +58,6 @@
                --with-tcl-includes=${LOCALBASE}/include/tcl8.3 \
                --with-tcl-libs=${LOCALBASE}/lib
 CONFIGURE_ENV+=        CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3"
-post-extract:
-       @uudecode -p ${FILESDIR}/tcl-freebsd.o.uu > ${WRKSRC}/source/tcl.o
 .endif

 .if defined(WITH_SOCKS5)
@@ -93,6 +97,13 @@
 .endif
 .if !defined(WITH_IPV6)
        @${ECHO} "WITH_IPV6 - Build BitchX with IPV6 support"
+.endif
+
+.if defined(WITH_TCL)
+
+post-extract:
+       @${CP} ${DISTDIR}/freebsd4-tcl83-bx1.0c19-tcl.o ${WRKSRC}/source/tcl.o
+
 .endif

 post-install:
Comment 1 dwcjr 2002-05-16 16:36:02 UTC
|+++ Makefile    Thu May 16 16:30:31 2002
--------------------------
Patching file Makefile using Plan A...
Hunk #1 failed at 9.
Hunk #2 failed at 58.
Hunk #3 failed at 97.
3 out of 3 hunks failed--saving rejects to Makefile.rej
Hmm...  The next patch looks like a unified diff to me...
The text leading up to this was:
--------------------------
|--- distinfo.orig       Thu May 16 16:09:57 2002
|+++ distinfo    Thu May 16 16:08:12 2002
--------------------------
Patching file distinfo using Plan A...
Hunk #1 succeeded at 1.
Hmm...  Ignoring the trailing garbage.
Comment 2 Tilman Linneweh 2002-05-16 18:18:55 UTC
Hi,

> |+++ Makefile    Thu May 16 16:30:31 2002
> --------------------------
> Patching file Makefile using Plan A...
> Hunk #1 failed at 9.

Sorry...I dunno, what went wrong..
I'll try again from a fresh checked out version below. 

If the diff gets crunched via Mail again,
i have also put a copy on http://oki.dynodns.net/~tilman/bitchx.diff

Thanks for your patience...

arved

diff -ruN /usr/ports/irc/bitchx/Makefile bitchx/Makefile
--- /usr/ports/irc/bitchx/Makefile      Thu May 16 10:02:45 2002
+++ bitchx/Makefile     Thu May 16 19:10:08 2002
@@ -9,13 +9,19 @@
 PORTVERSION=   1.0c19
 CATEGORIES+=   irc gnome
 MASTER_SITES=  ftp://ftp.bitchx.com/pub/BitchX/source/ \
-               ftp://ftp.bitchx.org/pub/BitchX/source/
+               ftp://ftp.bitchx.org/pub/BitchX/source/ \
+               ftp://ftp.cyberpunkz.org/pub/BitchX/source/ \
+               ftp://ftp.cyberpunkz.org/pub/BitchX/tcl-o/:tcl
 DISTNAME=      ircii-pana-1.0c19
+DISTFILES=     ${DISTNAME}${EXTRACT_SUFX}
+.if defined(WITH_TCL)
+DISTFILES+=    freebsd4-tcl83-bx1.0c19-tcl.o:tcl
+.endif
+EXTRACT_ONLY=  ${DISTNAME}${EXTRACT_SUFX}

 MAINTAINER=    freebsdports@arved.de

 WRKSRC=                ${WRKDIR}/BitchX
-
 GNU_CONFIGURE= yes
 USE_GMAKE=     yes
 WANT_ESOUND=   yes
@@ -52,8 +58,6 @@
                --with-tcl-includes=${LOCALBASE}/include/tcl8.3 \
                --with-tcl-libs=${LOCALBASE}/lib
 CONFIGURE_ENV+=        CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3"
-post-extract:
-       @uudecode -p ${FILESDIR}/tcl-freebsd.o.uu > ${WRKSRC}/source/tcl.o
 .endif

 .if defined(WITH_SOCKS5)
@@ -93,6 +97,13 @@
 .endif
 .if !defined(WITH_IPV6)
        @${ECHO} "WITH_IPV6 - Build BitchX with IPV6 support"
+.endif
+
+.if defined(WITH_TCL)
+
+post-extract:
+       @${CP} ${DISTDIR}/freebsd4-tcl83-bx1.0c19-tcl.o ${WRKSRC}/source/tcl.o
+
 .endif

 post-install:
diff -ruN /usr/ports/irc/bitchx/distinfo bitchx/distinfo
--- /usr/ports/irc/bitchx/distinfo      Wed May  1 20:24:18 2002
+++ bitchx/distinfo     Thu May 16 19:09:58 2002
@@ -1 +1,2 @@
 MD5 (ircii-pana-1.0c19.tar.gz) = 79431ff0880e7317049045981fac8adc
+MD5 (freebsd4-tcl83-bx1.0c19-tcl.o) = 75b933507725a309c6b2ecff58f4c248
Comment 3 dwcjr freebsd_committer freebsd_triage 2002-05-16 18:24:43 UTC
State Changed
From-To: open->closed

Committed, thanks!