add ftplib 3.1-1
A set of routines that implement the FTP protocol
This commit is contained in:
parent
10b05f2aa7
commit
c52e18b930
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=100641
4 changed files with 55 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
SUBDIR += ftpcube
|
||||
SUBDIR += ftpd-tls
|
||||
SUBDIR += ftpfind
|
||||
SUBDIR += ftplib
|
||||
SUBDIR += ftplocate
|
||||
SUBDIR += ftpmirror
|
||||
SUBDIR += ftpproxy
|
||||
|
|
45
ftp/ftplib/Makefile
Normal file
45
ftp/ftplib/Makefile
Normal file
|
@ -0,0 +1,45 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: ftplib
|
||||
# Date created: Feb 11, 2004
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ftplib
|
||||
PORTVERSION= 3.1.1
|
||||
CATEGORIES= ftp
|
||||
MASTER_SITES= http://www.nbpfaus.net/~pfau/ftplib/ \
|
||||
${MASTER_SITE_SUNSITE}
|
||||
MASTER_SITE_SUBDIR= libs
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:R}-src
|
||||
PATCH_SITES= http://www.nbpfaus.net/~pfau/ftplib/
|
||||
PATCHFILES= ${PORTNAME}-${PORTVERSION:R}-${PORTVERSION:E}.patch
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A set of routines that implement the FTP protocol
|
||||
|
||||
USE_REINPLACE= yes
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R}
|
||||
PATCH_DIST_STRIP= -p3
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
PLIST_FILES= lib/libftp.a lib/libftp.so lib/libftp.so.3 \
|
||||
include/ftplib.h
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e "s|^CFLAGS =|CFLAGS+=|" \
|
||||
-e "s|^LDFALGS =|LDFLAGS+=|" ${WRKSRC}/linux/Makefile
|
||||
|
||||
do-build:
|
||||
@(cd ${WRKSRC}/linux && ${GMAKE})
|
||||
|
||||
do-install:
|
||||
@(cd ${WRKSRC}/linux ; \
|
||||
${INSTALL_DATA} libftp.a libftp.so.3 ${PREFIX}/lib ; \
|
||||
${LN} -fs ${PREFIX}/lib/libftp.so.3 ${PREFIX}/lib/libftp.so ; \
|
||||
${INSTALL_DATA} ftplib.h ${PREFIX}/include \
|
||||
)
|
||||
|
||||
.include <bsd.port.mk>
|
4
ftp/ftplib/distinfo
Normal file
4
ftp/ftplib/distinfo
Normal file
|
@ -0,0 +1,4 @@
|
|||
MD5 (ftplib-3.1-src.tar.gz) = c6af758ccbf806b28f022a587a41d9c5
|
||||
SIZE (ftplib-3.1-src.tar.gz) = 90243
|
||||
MD5 (ftplib-3.1-1.patch) = 8af14825ee91abfc1441a66ad009e68b
|
||||
SIZE (ftplib-3.1-1.patch) = 6741
|
5
ftp/ftplib/pkg-descr
Normal file
5
ftp/ftplib/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
ftplib is a set of routines that implement the FTP protocol. They allow
|
||||
applications to create and access remote files through function calls instead
|
||||
of needing to fork and exec an interactive ftp client program.
|
||||
|
||||
WWW: http://nbpfaus.net/~pfau/ftplib/
|
Loading…
Reference in a new issue