summaryrefslogtreecommitdiff
path: root/net/gift
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2003-04-05 22:23:18 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2003-04-05 22:23:18 +0000
commita074466dc1a8f6dad047a725cc1462920943cdf7 (patch)
tree6c5bd7eb364f9c2000cd21a22c4fefb9ace195cc /net/gift
parentAdd missing files (diff)
Remove ports/net/gift due to lack of releases ever since the project creation
Notes
Notes: svn path=/head/; revision=78355
Diffstat (limited to 'net/gift')
-rw-r--r--net/gift/Makefile32
-rw-r--r--net/gift/distinfo1
-rw-r--r--net/gift/files/patch-lib:Makefile.in29
-rw-r--r--net/gift/files/patch-src:Makefile.in47
-rw-r--r--net/gift/pkg-descr21
-rw-r--r--net/gift/pkg-plist23
6 files changed, 0 insertions, 153 deletions
diff --git a/net/gift/Makefile b/net/gift/Makefile
deleted file mode 100644
index 8c353e434f79..000000000000
--- a/net/gift/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# New ports collection makefile for: giFT library
-# Date created: Fri Nov 16 02:47:45 BRST 2001
-# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= giFT
-PORTVERSION= 0.9.7
-CATEGORIES= net
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= ${PORTNAME:L}
-
-MAINTAINER= lioux@FreeBSD.org
-COMMENT= A generic interface to the FastTrack (TM) peer-to-peer network
-
-IGNORE= 'Does not currently work'
-
-GNU_CONFIGURE= yes
-
-DOC_FILES= AUTHORS COPYING ChangeLog \
- INSTALL NEWS README TODO
-
-post-install:
-.ifndef(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
-.for doc in ${DOC_FILES}
- @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
-.endfor
-.endif
-
-.include <bsd.port.mk>
diff --git a/net/gift/distinfo b/net/gift/distinfo
deleted file mode 100644
index 31f6b3637c40..000000000000
--- a/net/gift/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (giFT-0.9.7.tar.gz) = 89d9c0ea1ec73582e09c43468228959a
diff --git a/net/gift/files/patch-lib:Makefile.in b/net/gift/files/patch-lib:Makefile.in
deleted file mode 100644
index aca64971fc83..000000000000
--- a/net/gift/files/patch-lib:Makefile.in
+++ /dev/null
@@ -1,29 +0,0 @@
---- lib/Makefile.in.orig Fri Nov 16 02:52:02 2001
-+++ lib/Makefile.in Fri Nov 16 02:53:46 2001
-@@ -122,19 +122,19 @@
- maintainer-clean-libLIBRARIES:
-
- install-libLIBRARIES: $(lib_LIBRARIES)
-- @$(NORMAL_INSTALL)
-- $(mkinstalldirs) $(DESTDIR)$(libdir)
-+ @$(PRE_INSTALL)
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
- if test -f $$p; then \
-- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p"; \
-- $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p; \
-+ echo " $(RANLIB) $$p"; \
-+ $(RANLIB) $$p; \
- else :; fi; \
- done
-- @$(POST_INSTALL)
-+ @$(NORMAL_INSTALL)
-+ $(mkinstalldirs) $(DESTDIR)$(libdir)
- @list='$(lib_LIBRARIES)'; for p in $$list; do \
- if test -f $$p; then \
-- echo " $(RANLIB) $(DESTDIR)$(libdir)/$$p"; \
-- $(RANLIB) $(DESTDIR)$(libdir)/$$p; \
-+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p"; \
-+ $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p; \
- else :; fi; \
- done
-
diff --git a/net/gift/files/patch-src:Makefile.in b/net/gift/files/patch-src:Makefile.in
deleted file mode 100644
index 3903fc4c84f7..000000000000
--- a/net/gift/files/patch-src:Makefile.in
+++ /dev/null
@@ -1,47 +0,0 @@
---- src/Makefile.in.orig Thu Sep 27 13:11:51 2001
-+++ src/Makefile.in Mon Nov 19 21:43:46 2001
-@@ -65,7 +65,8 @@
-
- AM_CFLAGS = -Wall
-
--bin_PROGRAMS = giFT giFTget
-+bin_PROGRAMS = giFTget
-+sbin_PROGRAMS = giFT
-
- LDADD = ../lib/libgiFT.a
- INCLUDES = -I../lib
-@@ -78,7 +79,7 @@
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = ../config.h
- CONFIG_CLEAN_FILES =
--PROGRAMS = $(bin_PROGRAMS)
-+PROGRAMS = $(bin_PROGRAMS) $(sbin_PROGRAMS)
-
-
- DEFS = @DEFS@ -I. -I$(srcdir) -I..
-@@ -137,6 +138,16 @@
- else :; fi; \
- done
-
-+install-sbinPROGRAMS: $(sbin_PROGRAMS)
-+ @$(NORMAL_INSTALL)
-+ $(mkinstalldirs) $(DESTDIR)$(sbindir)
-+ @list='$(sbin_PROGRAMS)'; for p in $$list; do \
-+ if test -f $$p; then \
-+ echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
-+ $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
-+ else :; fi; \
-+ done
-+
- uninstall-binPROGRAMS:
- @$(NORMAL_UNINSTALL)
- list='$(bin_PROGRAMS)'; for p in $$list; do \
-@@ -230,7 +241,7 @@
- check: check-am
- installcheck-am:
- installcheck: installcheck-am
--install-exec-am: install-binPROGRAMS
-+install-exec-am: install-binPROGRAMS install-sbinPROGRAMS
- install-exec: install-exec-am
-
- install-data-am:
diff --git a/net/gift/pkg-descr b/net/gift/pkg-descr
deleted file mode 100644
index 7b655e007100..000000000000
--- a/net/gift/pkg-descr
+++ /dev/null
@@ -1,21 +0,0 @@
-The FastTrack network (http://www.fasttrack.nu/) is a peer-to-peer
-network for sharing files. It provides search facilities, and has
-a 2 level hierarchical scheme for organizing peers.
-
-Being a peer-to-peer network, there is no central server during
-normal operation. All communication is done between peers.
-
-giFT is the generic interface to FastTrack. It is intended to be
-interoperable with existing clients, and to speak a compatible
-protocol to that of the FastTrack network in order to communicate
-with peers. This program's reason for existing is as a compatible,
-interoperable, open source, Linux-based peer for the network.
-
-Unlike the existing clients, giFT uses a central server only extremely
-rarely. It does not require registrations or logins, and is not
-trying to show users advertisements. The issue of locating network
-peers is discussed later on. In particular, giFT does not contact
-the Morpheus, KaZaA, or Grokster central servers at all. giFT is
-Open Source (See COPYING).
-
-WWW: http://gift.sourceforge.net/
diff --git a/net/gift/pkg-plist b/net/gift/pkg-plist
deleted file mode 100644
index 783e5c7b0a97..000000000000
--- a/net/gift/pkg-plist
+++ /dev/null
@@ -1,23 +0,0 @@
-bin/giFTget
-include/giFT/giFT.h
-include/giFT/giFTbuffer.h
-include/giFT/giFTcrypt.h
-include/giFT/giFTdescribe.h
-include/giFT/giFTdownload.h
-include/giFT/giFThash.h
-include/giFT/giFTinterval.h
-include/giFT/giFTmd5.h
-include/giFT/giFTpacket.h
-include/giFT/giFTproto.h
-include/giFT/giFTshare.h
-lib/libgiFT.a
-sbin/giFT
-%%PORTDOCS%%share/doc/giFT/AUTHORS
-%%PORTDOCS%%share/doc/giFT/COPYING
-%%PORTDOCS%%share/doc/giFT/ChangeLog
-%%PORTDOCS%%share/doc/giFT/INSTALL
-%%PORTDOCS%%share/doc/giFT/NEWS
-%%PORTDOCS%%share/doc/giFT/README
-%%PORTDOCS%%share/doc/giFT/TODO
-%%PORTDOCS%%@dirrm share/doc/giFT
-@dirrm include/giFT