View | Details | Raw Unified | Return to bug 223714 | Differences between
and this patch

Collapse All | Expand All

(-)ftp/Makefile (+1 lines)
Lines 72-77 Link Here
72
    SUBDIR += php71-fastdfs
72
    SUBDIR += php71-fastdfs
73
    SUBDIR += php71-ftp
73
    SUBDIR += php71-ftp
74
    SUBDIR += php72-curl
74
    SUBDIR += php72-curl
75
    SUBDIR += php72-fastdfs
75
    SUBDIR += php72-ftp
76
    SUBDIR += php72-ftp
76
    SUBDIR += phpwebftp
77
    SUBDIR += phpwebftp
77
    SUBDIR += plasma-applet-ftpmonitor
78
    SUBDIR += plasma-applet-ftpmonitor
(-)ftp/php72-fastdfs/Makefile (+29 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	fastdfs
4
PORTVERSION=	5.0.11
5
CATEGORIES=	ftp
6
PKGNAMEPREFIX=	php72-
7
8
MAINTAINER=	daniel@blodan.se
9
COMMENT=	PHP 7.2 module for accessing a FastDFS cluster
10
11
LICENSE=	GPLv3+
12
13
LIB_DEPENDS=	libfastcommon.so:devel/libfastcommon \
14
		libfdfsclient.so:ftp/fastdfs
15
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	happyfish100
18
GH_PROJECT=	fastdfs
19
GH_TAGNAME=	1e50b4f
20
21
USES=			php:ext
22
IGNORE_WITH_PHP=	56 70 71
23
PHP_VER=		72
24
25
WRKSRC_SUBDIR=	php_client
26
27
PHP_MODNAME=	fastdfs_client
28
29
.include <bsd.port.mk>
(-)ftp/php72-fastdfs/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1502819531
2
SHA256 (happyfish100-fastdfs-5.0.11-1e50b4f_GH0.tar.gz) = 42ef67951c55fb416282cd20389dde5709016913debbb87465b9b744fa3dacf9
3
SIZE (happyfish100-fastdfs-5.0.11-1e50b4f_GH0.tar.gz) = 336996
(-)ftp/php72-fastdfs/files/patch-config.m4 (+11 lines)
Line 0 Link Here
1
--- config.m4.orig	2016-08-08 07:17:50 UTC
2
+++ config.m4
3
@@ -7,7 +7,7 @@ if test "$PHP_FASTDFS_CLIENT" != "no"; t
4
   PHP_SUBST(FASTDFS_CLIENT_SHARED_LIBADD)
5
 
6
   if test -z "$ROOT"; then
7
-	ROOT=/usr
8
+	ROOT=/usr/local
9
   fi
10
 
11
   PHP_ADD_INCLUDE($ROOT/include/fastcommon)
(-)ftp/php72-fastdfs/pkg-descr (+3 lines)
Line 0 Link Here
1
PHP module for accessing a FastDFS cluster
2
3
WWW: https://github.com/happyfish100/fastdfs
(-)ftp/php72-fastdfs/pkg-message (+15 lines)
Line 0 Link Here
1
Before you can start using this module;
2
- Make sure you have configured client.conf to point to your FastDFS cluster
3
  and that you see the cluster with fdfs_monitor
4
- Add this to your php.ini file
5
==================================================================
6
fastdfs_client.base_path = /var/tmp
7
fastdfs_client.connect_timeout = 2
8
fastdfs_client.network_timeout = 60
9
fastdfs_client.log_level = info
10
fastdfs_client.log_filename =
11
fastdfs_client.http.anti_steal_secret_key =
12
fastdfs_client.tracker_group_count = 1
13
fastdfs_client.tracker_group0 = /usr/local/etc/fdfs/client.conf
14
fastdfs_client.use_connection_pool = false
15
fastdfs_client.connection_pool_max_idle_time = 3600

Return to bug 223714