aboutsummaryrefslogtreecommitdiff
path: root/net/fsplib
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-03-15 22:40:00 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-03-15 22:40:00 +0000
commit48b38b7a77ed669a263a681100460bdfd5fca7c5 (patch)
tree7bb1e0cf4ad4e3385dcf69cbeea6c7fa2255b434 /net/fsplib
parent4dc915dc4348e506a835439af860b4ef087b97d6 (diff)
FSPLIB is a set of routines that implement the FSP protocol. They allow
applications to work with files on FSP server with the same style used to work with local files via libc. PR: ports/78833 Submitted by: Radim Kolar <hsn@netmag.cz>
Notes
Notes: svn path=/head/; revision=131351
Diffstat (limited to 'net/fsplib')
-rw-r--r--net/fsplib/Makefile29
-rw-r--r--net/fsplib/distinfo2
-rw-r--r--net/fsplib/pkg-descr7
3 files changed, 38 insertions, 0 deletions
diff --git a/net/fsplib/Makefile b/net/fsplib/Makefile
new file mode 100644
index 000000000000..187c701d10f9
--- /dev/null
+++ b/net/fsplib/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: fsplib
+# Date created: 15 Jan 2005
+# Whom: X
+#
+# $FreeBSD$
+
+PORTNAME= fsplib
+PORTVERSION= 0.6
+CATEGORIES= net
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= fsp
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= Library implementing FSP protocol
+
+BUILD_DEPENDS= scons:${PORTSDIR}/devel/scons
+
+PLIST_FILES= include/fsplib.h lib/libfsp.a
+NO_WRKSUBDIR= yes
+
+do-build:
+ @cd ${WRKSRC} && scons prefix=${PREFIX}
+
+do-install:
+ @cd ${WRKSRC} && scons prefix=${PREFIX} install
+ ${FIND} ${PREFIX}/include/ -name .sconsign -exec ${RM} {} \;
+ ${FIND} ${PREFIX}/lib/ -name .sconsign -exec ${RM} {} \;
+
+.include <bsd.port.mk>
diff --git a/net/fsplib/distinfo b/net/fsplib/distinfo
new file mode 100644
index 000000000000..6ae0ed855721
--- /dev/null
+++ b/net/fsplib/distinfo
@@ -0,0 +1,2 @@
+MD5 (fsplib-0.6.tar.gz) = 18f837120b5a185840dd16555728dc30
+SIZE (fsplib-0.6.tar.gz) = 17659
diff --git a/net/fsplib/pkg-descr b/net/fsplib/pkg-descr
new file mode 100644
index 000000000000..1ddcff6de4c2
--- /dev/null
+++ b/net/fsplib/pkg-descr
@@ -0,0 +1,7 @@
+FSPLIB is a set of routines that implement the FSP protocol. They allow
+applications to work with files on FSP server with the same style
+used to work with local files via libc.
+
+Note: GFTP prefers this package over its built in FSP stack.
+
+WWW: http://fsp.sourceforge.net/fsplib.html