diff options
author | Dmitrij Tejblum <dt@FreeBSD.org> | 1999-01-06 17:11:24 +0000 |
---|---|---|
committer | Dmitrij Tejblum <dt@FreeBSD.org> | 1999-01-06 17:11:24 +0000 |
commit | b727f8ef632aa50510588a1001332e43623b7d46 (patch) | |
tree | d3689a6ce9368a8937d2367a048a8198d7405462 /net/sharity-light | |
parent | 7222c99e9759c90957decb38acc879631259133b (diff) | |
download | ports-b727f8ef632aa50510588a1001332e43623b7d46.tar.gz ports-b727f8ef632aa50510588a1001332e43623b7d46.zip |
Notes
Diffstat (limited to 'net/sharity-light')
-rw-r--r-- | net/sharity-light/Makefile | 10 | ||||
-rw-r--r-- | net/sharity-light/distinfo | 2 | ||||
-rw-r--r-- | net/sharity-light/files/patch-ad | 31 |
3 files changed, 11 insertions, 32 deletions
diff --git a/net/sharity-light/Makefile b/net/sharity-light/Makefile index 91924a085191..e01686192994 100644 --- a/net/sharity-light/Makefile +++ b/net/sharity-light/Makefile @@ -3,15 +3,15 @@ # Date created: 14 June 1997 # Whom: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru> # -# $Id: Makefile,v 1.8 1998/10/16 00:55:28 jseger Exp $ +# $Id: Makefile,v 1.9 1998/11/23 23:10:10 billf Exp $ # -DISTNAME= Sharity-Light.1.0.s -PKGNAME= sharity-light-1.0 +DISTNAME= Sharity-Light.1.2 +PKGNAME= sharity-light-1.2 CATEGORIES= net MASTER_SITES= ftp://ftp.obdev.at/pub/Products/Sharity-Light/ \ - ftp://ftp.rhrz.uni-bonn.de/pub-koeln/net/samba/ \ - ftp://ftp.warpnet.ro/mirrors/ftp.obdev.at/pub/Products/Sharity-Light/ + ftp://ftp.warpnet.ro/mirrors/ftp.obdev.at/pub/Products/Sharity-Light/ \ + http://www.freebsd.org/~dt/distfiles/ MAINTAINER= dt@FreeBSD.ORG diff --git a/net/sharity-light/distinfo b/net/sharity-light/distinfo index 802e84aba378..0c4e479f56f5 100644 --- a/net/sharity-light/distinfo +++ b/net/sharity-light/distinfo @@ -1 +1 @@ -MD5 (Sharity-Light.1.0.s.tar.gz) = 8ee65292b459cb6497655983489e4aa6 +MD5 (Sharity-Light.1.2.tar.gz) = bf892019a5cbdb2ef4a2d69d858482b4 diff --git a/net/sharity-light/files/patch-ad b/net/sharity-light/files/patch-ad index 3a3f6b16f96a..be51b6c7ee72 100644 --- a/net/sharity-light/files/patch-ad +++ b/net/sharity-light/files/patch-ad @@ -1,12 +1,11 @@ ---- Makefile.orig Wed Jun 3 15:19:51 1998 -+++ Makefile Wed Jun 3 15:20:59 1998 -@@ -13,12 +13,12 @@ +--- Makefile.orig Mon Jan 4 19:07:31 1999 ++++ Makefile Mon Jan 4 19:08:07 1999 +@@ -12,11 +12,11 @@ ############################################################################## # For NEXTSTEP/OPENSTEP: -CFLAGS = -Wall -O2 -traditional-cpp -g +#CFLAGS = -Wall -O2 -traditional-cpp -g - INCLUDES = $(MYINCL) $(INCL) # put your architecture here: -ARCH = -arch i386 -THE_CC = cc @@ -15,38 +14,18 @@ +#THE_CC = cc +#RPC_WARNFLAGS = -Wno-unused -Wno-switch -Wno-uninitialized - # For Linux: + # For Linux: (use static linking because of libc5/libc6 troubles) #CFLAGS = -Wall -O2 -g -@@ -26,10 +26,10 @@ +@@ -24,9 +24,9 @@ #RPC_WARNFLAGS = -Wno-unused -Wno-switch -Wno-uninitialized # For FreeBSD -#CFLAGS = -Wall -O2 --#INCLUDES = $(MYINCL) $(INCL) -#THE_CC = cc -#RPC_WARNFLAGS = -Wno-unused -Wno-switch -Wno-uninitialized +CFLAGS += -Wall -+INCLUDES = $(MYINCL) $(INCL) +THE_CC := $(CC) +RPC_WARNFLAGS = -Wno-unused -Wno-switch -Wno-uninitialized # For NetBsd #CFLAGS = -Wall -O2 -DNETBSD -@@ -67,7 +67,7 @@ - OFILES = proc.o sock.o rumba.o psinode.o kernel.o smb_abstraction.o fo_nfs.o - - .c.o: -- $(CC) $(CFLAGS) $(ARCH) -c -o $*.o $< -+ $(CC) $(CFLAGS) -c -o $*.o $< - - all: $(NAME) - -@@ -75,7 +75,7 @@ - (cd nfs; $(MAKE) "CFLAGS=$(CFLAGS)" "CC=$(THE_CC)" "ARCH=$(ARCH)" "RPC_WARNFLAGS=$(RPC_WARNFLAGS)") - - $(NAME): $(OFILES) nfs_dir -- $(CC) $(ARCH) -o $(NAME) $(OFILES) nfs/nfs.o $(LIBS) -+ $(CC) -o $(NAME) $(OFILES) nfs/nfs.o $(LIBS) - - clean: - rm -f $(OFILES) |