FreeBSD Bugzilla – Attachment 173663 Details for
Bug 208828
[NEW PORT] textproc/php*-enchant: Enchant spelling module
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Changes to ports tree to add the module
php-enchant-diff.patch (text/plain), 7.40 KB, created by
Daniel Ylitalo
on 2016-08-14 13:33:03 UTC
(
hide
)
Description:
Changes to ports tree to add the module
Filename:
MIME Type:
Creator:
Daniel Ylitalo
Created:
2016-08-14 13:33:03 UTC
Size:
7.40 KB
patch
obsolete
>Index: Mk/Uses/php.mk >=================================================================== >--- Mk/Uses/php.mk (revision 420185) >+++ Mk/Uses/php.mk (working copy) >@@ -289,7 +289,7 @@ > . if defined(USE_PHP) && ${USE_PHP:tl} != "yes" > # non-version specific components > _USE_PHP_ALL= apc bcmath bitset bz2 calendar ctype curl dba dom \ >- exif fileinfo filter ftp gd gettext gmp \ >+ enchant exif fileinfo filter ftp gd gettext gmp \ > hash iconv igbinary imap interbase intl json ldap mbstring mcrypt \ > memcache mysqli odbc opcache \ > openssl pcntl pcre pdf pdo pdo_dblib pdo_firebird pdo_mysql \ >@@ -316,6 +316,7 @@ > dba_DEPENDS= databases/php${PHP_VER}-dba > dbase_DEPENDS= databases/php${PHP_VER}-dbase > dom_DEPENDS= textproc/php${PHP_VER}-dom >+enchant_DEPENDS= textproc/php${PHP_VER}-enchant > exif_DEPENDS= graphics/php${PHP_VER}-exif > fileinfo_DEPENDS= sysutils/php${PHP_VER}-fileinfo > filter_DEPENDS= security/php${PHP_VER}-filter >Index: lang/php55/Makefile.ext >=================================================================== >--- lang/php55/Makefile.ext (revision 420185) >+++ lang/php55/Makefile.ext (working copy) >@@ -60,6 +60,11 @@ > USE_GNOME= libxml2 > .endif > >+.if ${PHP_MODNAME} == "enchant" >+LIB_DEPENDS+= libenchant.so:textproc/enchant >+CONFIGURE_ARGS+=--with-enchant=${LOCALBASE} >+.endif >+ > .if ${PHP_MODNAME} == "exif" > CONFIGURE_ARGS+=--enable-exif > .endif >Index: lang/php55-extensions/Makefile >=================================================================== >--- lang/php55-extensions/Makefile (revision 420185) >+++ lang/php55-extensions/Makefile (working copy) >@@ -14,7 +14,7 @@ > IGNORE_WITH_PHP=56 70 > > OPTIONS_DEFINE= BCMATH BZ2 CALENDAR CTYPE CURL DBA \ >- DOM EXIF FILEINFO FILTER FTP GD GETTEXT \ >+ DOM ENCHANT EXIF FILEINFO FILTER FTP GD GETTEXT \ > GMP HASH ICONV IMAP INTERBASE JSON LDAP MBSTRING MCRYPT \ > MSSQL MYSQL MYSQLI \ > ODBC OPCACHE OPENSSL PCNTL PDF PDO PDO_DBLIB PDO_FIREBIRD \ >@@ -31,6 +31,7 @@ > CURL_DESC= CURL support > DBA_DESC= dba support > DOM_DESC= DOM support >+ENCHANT_DESC= Enchant spelling support > EXIF_DESC= EXIF support > FILEINFO_DESC= fileinfo support > FILTER_DESC= input filter support >Index: lang/php56/Makefile.ext >=================================================================== >--- lang/php56/Makefile.ext (revision 420185) >+++ lang/php56/Makefile.ext (working copy) >@@ -60,6 +60,11 @@ > USE_GNOME= libxml2 > .endif > >+.if ${PHP_MODNAME} == "enchant" >+LIB_DEPENDS+= libenchant.so:textproc/enchant >+CONFIGURE_ARGS+=--with-enchant=${LOCALBASE} >+.endif >+ > .if ${PHP_MODNAME} == "exif" > CONFIGURE_ARGS+=--enable-exif > .endif >Index: lang/php56-extensions/Makefile >=================================================================== >--- lang/php56-extensions/Makefile (revision 420185) >+++ lang/php56-extensions/Makefile (working copy) >@@ -14,7 +14,7 @@ > IGNORE_WITH_PHP= 55 70 > > OPTIONS_DEFINE= BCMATH BZ2 CALENDAR CTYPE CURL DBA \ >- DOM EXIF FILEINFO FILTER FTP GD GETTEXT \ >+ DOM ENCHANT EXIF FILEINFO FILTER FTP GD GETTEXT \ > GMP HASH ICONV IMAP INTERBASE JSON LDAP MBSTRING MCRYPT \ > MSSQL MYSQL MYSQLI \ > ODBC OPCACHE OPENSSL PCNTL PDF PDO PDO_DBLIB PDO_FIREBIRD \ >@@ -31,6 +31,7 @@ > CURL_DESC= CURL support > DBA_DESC= dba support > DOM_DESC= DOM support >+ENCHANT_DESC= Enchant spelling support > EXIF_DESC= EXIF support > FILEINFO_DESC= fileinfo support > FILTER_DESC= input filter support >Index: lang/php70/Makefile.ext >=================================================================== >--- lang/php70/Makefile.ext (revision 420185) >+++ lang/php70/Makefile.ext (working copy) >@@ -60,6 +60,11 @@ > USE_GNOME= libxml2 > .endif > >+.if ${PHP_MODNAME} == "enchant" >+LIB_DEPENDS+= libenchant.so:textproc/enchant >+CONFIGURE_ARGS+=--with-enchant=${LOCALBASE} >+.endif >+ > .if ${PHP_MODNAME} == "exif" > CONFIGURE_ARGS+=--enable-exif > .endif >Index: lang/php70-extensions/Makefile >=================================================================== >--- lang/php70-extensions/Makefile (revision 420185) >+++ lang/php70-extensions/Makefile (working copy) >@@ -14,7 +14,7 @@ > IGNORE_WITH_PHP= 55 56 > > OPTIONS_DEFINE= BCMATH BZ2 CALENDAR CTYPE CURL DBA \ >- DOM EXIF FILEINFO FILTER FTP GD GETTEXT \ >+ DOM ENCHANT EXIF FILEINFO FILTER FTP GD GETTEXT \ > GMP HASH ICONV INTL IMAP INTERBASE JSON LDAP MBSTRING MCRYPT \ > MYSQLI \ > ODBC OPCACHE OPENSSL PCNTL PDF PDO PDO_DBLIB PDO_FIREBIRD \ >@@ -31,6 +31,7 @@ > CURL_DESC= CURL support > DBA_DESC= dba support > DOM_DESC= DOM support >+ENCHANT_DESC= Enchant spelling support > EXIF_DESC= EXIF support > FILEINFO_DESC= fileinfo support > FILTER_DESC= input filter support >Index: textproc/Makefile >=================================================================== >--- textproc/Makefile (revision 420185) >+++ textproc/Makefile (working copy) >@@ -1171,6 +1171,7 @@ > SUBDIR += php-mecab > SUBDIR += php55-ctype > SUBDIR += php55-dom >+ SUBDIR += php55-enchant > SUBDIR += php55-pspell > SUBDIR += php55-simplexml > SUBDIR += php55-wddx >@@ -1180,6 +1181,7 @@ > SUBDIR += php55-xsl > SUBDIR += php56-ctype > SUBDIR += php56-dom >+ SUBDIR += php56-enchant > SUBDIR += php56-pspell > SUBDIR += php56-simplexml > SUBDIR += php56-wddx >@@ -1189,6 +1191,7 @@ > SUBDIR += php56-xsl > SUBDIR += php70-ctype > SUBDIR += php70-dom >+ SUBDIR += php70-enchant > SUBDIR += php70-pspell > SUBDIR += php70-simplexml > SUBDIR += php70-wddx >Index: textproc/php55-enchant/Makefile >=================================================================== >--- textproc/php55-enchant/Makefile (nonexistent) >+++ textproc/php55-enchant/Makefile (working copy) >@@ -0,0 +1,9 @@ >+# $FreeBSD$ >+ >+CATEGORIES= textproc >+ >+MASTERDIR= ${.CURDIR}/../../lang/php55 >+ >+PKGNAMESUFFIX= -enchant >+ >+.include "${MASTERDIR}/Makefile" > >Property changes on: textproc/php55-enchant/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/php56-enchant/Makefile >=================================================================== >--- textproc/php56-enchant/Makefile (nonexistent) >+++ textproc/php56-enchant/Makefile (working copy) >@@ -0,0 +1,9 @@ >+# $FreeBSD$ >+ >+CATEGORIES= textproc >+ >+MASTERDIR= ${.CURDIR}/../../lang/php56 >+ >+PKGNAMESUFFIX= -enchant >+ >+.include "${MASTERDIR}/Makefile" > >Property changes on: textproc/php56-enchant/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: textproc/php70-enchant/Makefile >=================================================================== >--- textproc/php70-enchant/Makefile (nonexistent) >+++ textproc/php70-enchant/Makefile (working copy) >@@ -0,0 +1,9 @@ >+# $FreeBSD$ >+ >+CATEGORIES= textproc >+ >+MASTERDIR= ${.CURDIR}/../../lang/php70 >+ >+PKGNAMESUFFIX= -enchant >+ >+.include "${MASTERDIR}/Makefile" > >Property changes on: textproc/php70-enchant/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 208828
:
169362
|
169363
|
169364
|
169365
|
169367
|
173214
|
173215
| 173663 |
173664
|
173665
|
173666