diff options
author | Rene Ladan <rene@FreeBSD.org> | 2014-03-01 00:06:29 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2014-03-01 00:06:29 +0000 |
commit | ef50dbb213487797f1a2d9f4d0d5636f98bb3894 (patch) | |
tree | a82aa9cd34a90c5daecd9ec479f5a85b36141796 /sysutils | |
parent | f71856690663be97f52c087e275f98252bcfb3e6 (diff) | |
download | ports-ef50dbb213487797f1a2d9f4d0d5636f98bb3894.tar.gz ports-ef50dbb213487797f1a2d9f4d0d5636f98bb3894.zip |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 2 | ||||
-rw-r--r-- | sysutils/pecl-fileinfo/Makefile | 23 | ||||
-rw-r--r-- | sysutils/pecl-fileinfo/distinfo | 2 | ||||
-rw-r--r-- | sysutils/pecl-fileinfo/pkg-descr | 8 | ||||
-rw-r--r-- | sysutils/php52-posix/Makefile | 11 | ||||
-rw-r--r-- | sysutils/php52-posix/files/patch-posix.c | 38 |
6 files changed, 0 insertions, 84 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 6aee7d36640c..bf0ab5f93c3e 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -678,7 +678,6 @@ SUBDIR += pear-I18Nv2 SUBDIR += pear-Log SUBDIR += pear-Translation2 - SUBDIR += pecl-fileinfo SUBDIR += pecl-mogilefs SUBDIR += pecl-proctitle SUBDIR += pefs-kmod @@ -692,7 +691,6 @@ SUBDIR += philesight SUBDIR += php5-fileinfo SUBDIR += php5-posix - SUBDIR += php52-posix SUBDIR += php53-fileinfo SUBDIR += php53-posix SUBDIR += php55-fileinfo diff --git a/sysutils/pecl-fileinfo/Makefile b/sysutils/pecl-fileinfo/Makefile deleted file mode 100644 index f1d8df2605a4..000000000000 --- a/sysutils/pecl-fileinfo/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# Created by: Alex Dupre <ale@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= fileinfo -PORTVERSION= 1.0.4 -CATEGORIES= sysutils pear -MASTER_SITES= http://pecl.php.net/get/ -PKGNAMEPREFIX= pecl- -DISTNAME= Fileinfo-${PORTVERSION} -EXTRACT_SUFX= .tgz -DIST_SUBDIR= PECL - -MAINTAINER= ale@FreeBSD.org -COMMENT= A PECL extension to retrieve info about files - -USE_PHP= yes -USE_PHPEXT= yes -DEFAULT_PHP_VER=52 -IGNORE_WITH_PHP=5 53 - -CONFIGURE_ARGS= --with-fileinfo=/usr - -.include <bsd.port.mk> diff --git a/sysutils/pecl-fileinfo/distinfo b/sysutils/pecl-fileinfo/distinfo deleted file mode 100644 index 006e81c0123f..000000000000 --- a/sysutils/pecl-fileinfo/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (PECL/Fileinfo-1.0.4.tgz) = df35ee00fce6483c58b2f37dbded33831ba84fdae92829dbe03f7331bec0aa3f -SIZE (PECL/Fileinfo-1.0.4.tgz) = 5835 diff --git a/sysutils/pecl-fileinfo/pkg-descr b/sysutils/pecl-fileinfo/pkg-descr deleted file mode 100644 index 3943ede7db9d..000000000000 --- a/sysutils/pecl-fileinfo/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -The Fileinfo extension allows retrieval of information regarding -vast majority of file. -This information may include dimensions, quality, length etc... - -Additionally it can also be used to retrieve the mime type for a -particular file and for text files proper language encoding. - -WWW: http://pecl.php.net/package/Fileinfo/ diff --git a/sysutils/php52-posix/Makefile b/sysutils/php52-posix/Makefile deleted file mode 100644 index 7ca6d5b7ef97..000000000000 --- a/sysutils/php52-posix/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Created by: Alex Keda <admin@lissyara.su> -# $FreeBSD$ - -CATEGORIES= sysutils - -MASTERDIR= ${.CURDIR}/../../lang/php52 - -PKGNAMESUFFIX= -posix - -NO_STAGE= yes -.include "${MASTERDIR}/Makefile" diff --git a/sysutils/php52-posix/files/patch-posix.c b/sysutils/php52-posix/files/patch-posix.c deleted file mode 100644 index a5b3bd1109f5..000000000000 --- a/sysutils/php52-posix/files/patch-posix.c +++ /dev/null @@ -1,38 +0,0 @@ ---- ext/posix/posix.c.orig Fri Feb 23 00:40:39 2007 -+++ ext/posix/posix.c Sun May 13 17:52:27 2007 -@@ -838,7 +838,7 @@ - #if defined(ZTS) && defined(HAVE_GETGRNAM_R) && defined(_SC_GETGR_R_SIZE_MAX) - buflen = sysconf(_SC_GETGR_R_SIZE_MAX); - if (buflen < 1) { -- RETURN_FALSE; -+ buflen = 1024; - } - buf = emalloc(buflen); - g = &gbuf; -@@ -888,7 +888,7 @@ - - grbuflen = sysconf(_SC_GETGR_R_SIZE_MAX); - if (grbuflen < 1) { -- RETURN_FALSE; -+ grbuflen = 1024; - } - - grbuf = emalloc(grbuflen); -@@ -955,7 +955,7 @@ - #if defined(ZTS) && defined(_SC_GETPW_R_SIZE_MAX) && defined(HAVE_GETPWNAM_R) - buflen = sysconf(_SC_GETPW_R_SIZE_MAX); - if (buflen < 1) { -- RETURN_FALSE; -+ buflen = 1024; - } - buf = emalloc(buflen); - pw = &pwbuf; -@@ -1004,7 +1004,7 @@ - #if defined(ZTS) && defined(_SC_GETPW_R_SIZE_MAX) && defined(HAVE_GETPWUID_R) - pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX); - if (pwbuflen < 1) { -- RETURN_FALSE; -+ pwbuflen = 1024; - } - pwbuf = emalloc(pwbuflen); - |