- Unbroke port (distfile was rerolled)
- Pathes was included in original distfiles. - Bump PortRevision - Pass maintainership to submitter. PR: ports/90365 Submitted by: Ion-Mihai "IOnut" Tetcu
This commit is contained in:
parent
7083867c78
commit
c4a175beef
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=151141
4 changed files with 5 additions and 45 deletions
|
@ -7,17 +7,16 @@
|
|||
|
||||
PORTNAME= cnet
|
||||
PORTVERSION= 2.0.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net tcl84 tk84
|
||||
MASTER_SITES= http://www.csse.uwa.edu.au/cnet/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= itetcu@people.tecnik93.com
|
||||
COMMENT= A networking simulator
|
||||
|
||||
LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84
|
||||
|
||||
BROKEN= Size mismatch
|
||||
|
||||
USE_REINPLACE= yes
|
||||
USE_XPM= yes
|
||||
USE_GMAKE= yes
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (cnet-2.0.9.tgz) = 593b63c809773a284bc3d655dc609298
|
||||
SHA256 (cnet-2.0.9.tgz) = e7895a09a04cf02f694ff9f4a272a3e9bb1d4723a6c0a8415b0d03442e4f6c76
|
||||
SIZE (cnet-2.0.9.tgz) = 1165028
|
||||
MD5 (cnet-2.0.9.tgz) = 4c346b3b3d22ebf7b8d6fb2a247cfcc1
|
||||
SHA256 (cnet-2.0.9.tgz) = 6e50398cef2c444858325a7a53d87b941f0072e5ed67d1dfff0aa5c40287494a
|
||||
SIZE (cnet-2.0.9.tgz) = 1165016
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- src/compile/freebsd.c.orig Wed May 12 18:13:45 2004
|
||||
+++ src/compile/freebsd.c Sun Jun 12 20:05:45 2005
|
||||
@@ -84,7 +84,7 @@
|
||||
cp = (CACHE *)malloc(sizeof(CACHE));
|
||||
cp->so_filenm = strdup(so_filenm);
|
||||
cp->length_data = (nls[1].n_value - nls[0].n_value);
|
||||
- cp->incore_data = (char *)((long)dlsym(handle,"end") - cp->length_data);
|
||||
+ cp->incore_data = (char *)((long)dlsym(handle,"_end") - cp->length_data);
|
||||
cp->original_data = (char *)malloc(cp->length_data);
|
||||
memcpy(cp->original_data, cp->incore_data, cp->length_data);
|
||||
cp->next = chd;
|
|
@ -1,28 +0,0 @@
|
|||
--- src/parser.c.orig Wed May 12 18:13:44 2004
|
||||
+++ src/parser.c Sun Jun 12 17:04:02 2005
|
||||
@@ -26,6 +26,8 @@
|
||||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
+extern void init_reboot_args(NODEATTR *na, int argc, char **argv);
|
||||
+
|
||||
#define expect(t,msg) if(token == t) gettoken(); \
|
||||
else compile_error("%s expected\n", msg)
|
||||
|
||||
@@ -224,8 +226,6 @@
|
||||
check_string(&(na->outputfile));
|
||||
break;
|
||||
case T_ATTR_NODE_REBOOTARGS : {
|
||||
- extern void init_reboot_args(NODEATTR *na, int argc, char **argv);
|
||||
-
|
||||
int argc;
|
||||
char **argv;
|
||||
char *str, *s, *t, ch;
|
||||
@@ -420,7 +420,6 @@
|
||||
static int node_defn(CnetNodetype nodetype)
|
||||
{
|
||||
extern int add_node(CnetNodetype, char *, int, int *);
|
||||
- extern void init_reboot_args(int n, int argc, char **argv);
|
||||
|
||||
int thisnode, wasnew;
|
||||
|
Loading…
Reference in a new issue