diff options
author | miwi <miwi@FreeBSD.org> | 2009-12-22 19:48:41 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-12-22 19:48:41 +0800 |
commit | 7ccc128e68d472aae102bc9ee56d69efbb88cc2a (patch) | |
tree | 028944dfb8a09f1053f20b571812a91ec26d415f | |
parent | 3496d11ec6d0589d43bee2592f09ac8e695fe880 (diff) | |
download | freebsd-ports-gnome-7ccc128e68d472aae102bc9ee56d69efbb88cc2a.tar.gz freebsd-ports-gnome-7ccc128e68d472aae102bc9ee56d69efbb88cc2a.tar.zst freebsd-ports-gnome-7ccc128e68d472aae102bc9ee56d69efbb88cc2a.zip |
- Switch to using bsd.ports.options.mk
- Use USERS and GROUPS functionality , instead of supplying pkg-install
- Drop some warnings about changes that happened a long time ago now.
PR: 141801
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk> (maintainer)
-rw-r--r-- | databases/phpmyadmin/Makefile | 101 | ||||
-rw-r--r-- | databases/phpmyadmin/files/pkg-install.in | 91 | ||||
-rw-r--r-- | databases/phpmyadmin/pkg-descr | 50 |
3 files changed, 50 insertions, 192 deletions
diff --git a/databases/phpmyadmin/Makefile b/databases/phpmyadmin/Makefile index ce13f35cab89..70a5aa36c517 100644 --- a/databases/phpmyadmin/Makefile +++ b/databases/phpmyadmin/Makefile @@ -23,8 +23,18 @@ NO_BUILD= yes USE_PHP= ctype mysql session spl filter .endif -# Unfortunately can't make WITH_SUPHP part of the OPTIONS selection, -# since it has to be processed before just about anything else. +OPTIONS= SUPHP "suPHP support" off \ + BZ2 "bzip2 library support" on \ + GD "GD library support" on \ + MYSQLI "Improved MySQL support" off \ + OPENSSL "OpenSSL support" on \ + PDF "PDFlib support (implies GD)" on \ + ZLIB "ZLIB support" on \ + MCRYPT "MCrypt library support" on \ + MBSTRING "Multi-byte character-set string support" on \ + ZIP "Zip compression support" on + +.include <bsd.port.options.mk> .if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) @@ -38,30 +48,19 @@ WANT_PHP_WEB= yes .endif -# PMA_USR is only used WITH_SUPHP - -PMA_GRP?= ${WWWGRP} -PMA_GID?= ${_PMA_GID} +# USERS is only used WITH_SUPHP +GROUPS?= ${WWWGRP} CFGFILE= config.inc.php PLIST= ${WRKDIR}/plist -PLIST_SUB+= PMA_GRP=${PMA_GRP} +PLIST_SUB+= PMA_GRP=${GROUPS} .if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) -PMA_USR?= _pma -PMA_UID?= 336 -PMA_GCOS?= "phpMyAdmin Owner" -PMA_HOME?= /nonexistent -PMA_SHELL?= /sbin/nologin - -SUB_LIST+= PMA_USR=${PMA_USR} \ - PMA_UID=${PMA_UID} \ - PMA_GRP=${PMA_GRP} \ - PMA_GID=${PMA_GID} \ - PMA_GCOS=${PMA_GCOS} \ - PMA_HOME=${PMA_HOME} \ - PMA_SHELL=${PMA_SHELL} +USERS?= _pma + +SUB_LIST+= PMA_USR=${USERS} \ + PMA_GRP=${GROUPS} SUB_FILES+= pkg-install pkg-deinstall .endif @@ -69,26 +68,7 @@ SUB_FILES+= pkg-install pkg-deinstall SUB_LIST+= PKGNAME=${PKGNAME} SUB_FILES+= pkg-message -# Copy the way lang/php{4,5}-extensions deals with its OPTIONS -- avoids -# problems with include of bsd.port.pre.mk - -OPTIONS= BZ2 "bzip2 library support" on \ - GD "GD library support" on \ - MYSQLI "Improved MySQL support" off \ - OPENSSL "OpenSSL support" on \ - PDF "PDFlib support (implies GD)" on \ - ZLIB "ZLIB support" on \ - MCRYPT "MCrypt library support" on \ - MBSTRING "Multi-byte character-set string support" on \ - ZIP "Zip compression support" on - -PORT_DBDIR?= /var/db/ports LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options - -.if exists(${OPTIONSFILE}) -.include "${OPTIONSFILE}" -.endif .if !defined(WITHOUT_PHP_DEPENDS) # Options that default to on: @@ -106,42 +86,20 @@ USE_PHP+= ${opt:L} .endfor .endif -.include <bsd.port.pre.mk> - -_PMA_GID!= ${PW} group show -n ${PMA_GRP} | ${CUT} -d : -f 3 -.if empty(_PMA_GID) -_PMA_GID= 80 -.endif - .SILENT: do-build: @${DO_NADA} pre-everything:: - ${ECHO_MSG} "" - ${ECHO_MSG} "You may use the following additional build option:" - ${ECHO_MSG} "" - ${ECHO_MSG} " WITH_SUPHP=yes Install appropriately for use with" - ${ECHO_MSG} " the www/suphp port [default: no]" - ${ECHO_MSG} "" ${ECHO_MSG} "This version of phpmyadmin requires PHP 5.2+ and MySQL" ${ECHO_MSG} "5.0+. If you need to use an older version of PHP or" ${ECHO_MSG} "manage older MYSQL databases, please use the" ${ECHO_MSG} "databases/phpmyadmin211 port instead." ${ECHO_MSG} "" -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) - @if ${PW} show -n phpmyadm >/dev/null 2>&1 ; then \ - ${ECHO_MSG} "===> WARNING ******************************" ; \ - ${ECHO_MSG} "The default username used by ${PKNAME} has changed"; \ - ${ECHO_MSG} "to ${PMA_USR} -- you should delete the old user:" ; \ - ${ECHO_MSG} " # ${PW} user del -n phpmyadm" ; \ - ${ECHO_MSG} "" ; \ - fi -.endif # When creating a package, empty directories will not be generated -# from the pkg tarball. Therefore make sure no directories are empty. +# from the pkg tarball. Therefore make sure no directories are empty. post-patch: cd ${WRKSRC} ; \ @@ -151,16 +109,11 @@ post-patch: ${CP} ${FILESDIR}/${CFGFILE}.sample ${WRKSRC}/${CFGFILE}.sample cd ${WRKSRC} ; \ ${FIND} . ! -type d ! -name ${CFGFILE}.sample | ${SORT} | \ - ${SED} -e "s,^\.,%%WWWDIR%%," >${PLIST} ; \ - ${CAT} ${PKGDIR}/pkg-plist-chunk >>${PLIST} ; \ + ${SED} -e "s,^\.,%%WWWDIR%%," >${PLIST} ; \ + ${CAT} ${PKGDIR}/pkg-plist-chunk >>${PLIST} ; \ ${FIND} . -type d | ${SORT} -r | ${SED} \ -e "s,^\.$$,@dirrmtry %%WWWDIR%%," \ - -e "s,^\.,@dirrm %%WWWDIR%%," >>${PLIST} - -pre-install: -.if defined(WITH_SUPHP) - ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL -.endif + -e "s,^\.,@dirrm %%WWWDIR%%," >>${PLIST} do-install: install-app install-conf @@ -169,16 +122,16 @@ install-app: for src in $$( ${FIND} . ! -name .cvsignore ) ; do \ dst=${WWWDIR}$${src#.} ; \ if ${TEST} -d $$src ; then \ - ${MKDIR} $$dst ; \ + ${MKDIR} $$dst ; \ else \ - ${INSTALL_DATA} $$src $$dst ; \ + ${INSTALL_DATA} $$src $$dst ; \ fi \ done install-conf: install-app cd ${WWWDIR} ; \ ${CHMOD} 0640 ${CFGFILE}.sample ; \ - ${CHGRP} ${PMA_GRP} ${CFGFILE}.sample ; \ + ${CHGRP} ${WWWGRP} ${CFGFILE}.sample ; \ if ${TEST} ! -f ${CFGFILE} ; then \ ${CP} -p ${CFGFILE}.sample ${CFGFILE} ; \ fi @@ -189,4 +142,4 @@ post-install: .endif ${CAT} ${PKGMESSAGE} -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/databases/phpmyadmin/files/pkg-install.in b/databases/phpmyadmin/files/pkg-install.in index b8adfb92959b..4a552295fda4 100644 --- a/databases/phpmyadmin/files/pkg-install.in +++ b/databases/phpmyadmin/files/pkg-install.in @@ -5,103 +5,18 @@ PATH=/usr/sbin:/usr/bin:/bin ; export PATH -pma_dir=%%WWWDIR%% +WWWDIR=%%WWWDIR%% pma_usr=%%PMA_USR%% -pma_uid=%%PMA_UID%% pma_grp=%%PMA_GRP%% -pma_gid=%%PMA_GID%% - -pma_gcos="%%PMA_GCOS%%" -pma_home=%%PMA_HOME%% -pma_shell=%%PMA_SHELL%% - -create_group() { - local user uid group gid gcos home shell - - user=$1 - uid=$2 - group=$3 - gid=$4 - gcos=$5 - home=$6 - shell=$7 - - - if pw group show -n $group >/dev/null 2>&1 ; then - echo "===> Using pre-existing group $group" - else - if pw groupadd -n $group -g $gid ; then - echo "===> Group $group created" - else - cat <<-EOERRORMSG - *** Failed to create the $group group. - - Please add the $user user and $group group - manually with the commands: - - pw groupadd -n $group -g $gid - pw useradd -n $user -u $uid -g $group -c "$gcos" \\ - -d $home -s $shell -h - - - and retry installing this package. - EOERRORMSG - exit 1 - fi - fi - -} - - -create_user() { - local user uid group gid gcos home shell - - user=$1 - uid=$2 - group=$3 - gid=$4 - gcos=$5 - home=$6 - shell=$7 - - if pw user show -n $user >/dev/null 2>&1 ; then - echo "===> Using pre-existing user $user" - else - if pw useradd -n $user -u $uid -g $group -c "$gcos" \ - -d $home -s $shell -h - ; then - echo "===> Created $user user" - else - cat <<-EOERRORMSG - *** Failed to create the $user user. - - Please add the $user user manually with the command: - - pw useradd -n $user -u $uid -g $group -c "$gcos" \\ - -d $home -s $shell -h - - - and retry installing this package. - EOERRORMSG - exit 1 - fi - fi -} - case $2 in - PRE-INSTALL) - - # Create the pma user and group if they do not already exist - create_group $pma_usr $pma_uid $pma_grp $pma_gid \ - "$pma_gcos" $pma_home $pma_shell - create_user $pma_usr $pma_uid $pma_grp $pma_gid \ - "$pma_gcos" $pma_home $pma_shell - ;; POST-INSTALL) # Change ownership of the phpMyAdm directory - echo "===> Adjusting file ownership in $pma_dir" - chown -R $pma_usr:$pma_grp $pma_dir || exit 1 + echo "===> Adjusting file ownership in $WWWDIR" + chown -R $pma_usr:$pma_grp $WWWDIR || exit 1 ;; esac diff --git a/databases/phpmyadmin/pkg-descr b/databases/phpmyadmin/pkg-descr index 6d392982ab23..e5ae4739a167 100644 --- a/databases/phpmyadmin/pkg-descr +++ b/databases/phpmyadmin/pkg-descr @@ -2,35 +2,25 @@ phpMyAdmin handles the administration of MySQL over the Web. It can manage a whole MySQL server as well as a single database. - Currently phpMyAdmin can: - - easily browse through databases and tables - - create, copy, rename, alter and drop databases - - create, copy, rename, alter and drop tables - - do table maintenance - - add, edit and drop fields - - execute any SQL-statement, even multiple queries - - create, alter and drop indexes - - load text files into tables - - create (*) and read dumps of tables or databases - - export (*) data to SQL, CSV, XML, Word, Excel, PDF and Latex - formats - - administer multiple servers - - manage MySQL users and privileges - - check server settings and runtime information with - configuration hints - - check referential integrity in MyISAM tables - - using Query-by-example (QBE), create complex queries - automatically connecting required tables - - create PDF graphics of your Database layout - - search globally in a database or a subset of it - - transform stored data into any format using a set of predefined - functions, like displaying BLOB-data as image or download-link - - support InnoDB tables and foreign keys (see FAQ 3.6) - - support mysqli, the improved MySQL extension (see FAQ 1.17) - - communicate in 50 different languages - - (*) phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats) - dumps and CSV exports if you use PHP4 >= 4.0.4 with Zlib support - (--with-zli b) and/or Bzip2 support (--with-bz2). + * Intuitive web interface + * Support for most MySQL features: + o browse and drop databases, tables, views, fields and indexes + o create, copy, drop, rename and alter databases, tables, fields + and indexes + o maintenance of server, databases and tables, with proposals on + server configuration + o execute, edit and bookmark any SQL-statement, even batch-queries + o manage MySQL users and privileges + o manage stored procedures and triggers + * Import data from CSV and SQL + * Export data to various formats: CSV, SQL, XML, PDF, ISO/IEC 26300 - + OpenDocument Text and Spreadsheet, Word, Excel, LATEX and others + * Administering multiple servers + * Creating PDF graphics of your database layout + * Creating complex queries using Query-by-example (QBE) + * Searching globally in a database or a subset of it + * Transforming stored data into any format using a set of predefined + functions, like displaying BLOB-data as image or download-link + * And much more... WWW: http://www.phpmyadmin.net/ |