View | Details | Raw Unified | Return to bug 66697
Collapse All | Expand All

(-)phpmyadmin/Makefile (-11 / +90 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	phpMyAdmin
8
PORTNAME=	phpMyAdmin
9
PORTVERSION=	2.5.6
9
PORTVERSION=	2.5.6
10
PORTREVISION=	1
10
CATEGORIES=	databases www
11
CATEGORIES=	databases www
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	phpmyadmin
13
MASTER_SITE_SUBDIR=	phpmyadmin
Lines 15-35 Link Here
15
COMMENT=	A set of PHP-scripts to adminster MySQL over the web
16
COMMENT=	A set of PHP-scripts to adminster MySQL over the web
16
17
17
USE_BZIP2=	yes
18
USE_BZIP2=	yes
18
USE_PHP=	yes
19
NO_BUILD=	yes
19
NO_BUILD=	yes
20
20
21
MYADMDIR?=	www/data/phpMyAdmin
21
.if defined(WITH_SUPHP)
22
22
23
PLIST_SUB+=	MYADMDIR=${MYADMDIR}
23
RUN_DEPENDS=	${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp
24
PKGNAMESUFFIX=	-suphp
25
PKGINST_SKEL=	${PKGDIR}/pkg-install${PKGNAMESUFFIX}
26
PKGINSTALL=	${WRKDIR}/pkg-install${PKGNAMESUFFIX}
27
PKGDEINST_SKEL=	${PKGDIR}/pkg-deinstall${PKGNAMESUFFIX}
28
PKGDEINSTALL=	${WRKDIR}/pkg-deinstall${PKGNAMESUFFIX}
29
30
MYADMUSR?=	phpmyadm
31
32
SED_SCRIPT=	-e 's,%%PREFIX%%,${PREFIX},g'     \
33
		-e 's,%%MYADMDIR%%,${MYADMDIR},g' \
34
		-e 's,%%MYADMUSR%%,${MYADMUSR},g' \
35
		-e 's,%%MYADMGRP%%,${MYADMGRP},g'
24
36
25
post-patch:
37
.else
26
	@${MV} ${WRKSRC}/config.inc.php ${WRKSRC}/config.inc.php.sample
38
39
USE_PHP=	yes
40
WANT_PHP_WEB=	yes
27
41
28
do-install:
42
.endif
29
	@${MKDIR} ${PREFIX}/${MYADMDIR}
43
30
	@${FIND} ${WRKSRC} ! -path '*/CVS*' ! -path '*/.cvsignore' | \
44
MSG_SKEL=	${PKGDIR}/pkg-message
31
		${XARGS} -n1 ${SH} -c 'if ${TEST} -d $$0; \
45
PKGMESSAGE=	${WRKDIR}/pkg-message
32
			then ${MKDIR} ${PREFIX}/${MYADMDIR}$${0#${WRKSRC}}; \
46
33
			else ${INSTALL_DATA} $$0 ${PREFIX}/${MYADMDIR}$${0#${WRKSRC}}; fi'
47
# MYADMUSR is only used WITH_SUPHP
48
MYADMDIR?=	www/phpMyAdmin
49
MYADMGRP?=	${WWWGRP}
50
CFGFILE=	config.inc.php
51
52
PLIST=		${WRKDIR}/plist
53
PLIST_SUB+=	MYADMDIR=${MYADMDIR} MYADMGRP=${MYADMGRP}
54
55
.SILENT:
56
57
pre-everything::
58
	${ECHO_MSG} ""
59
	${ECHO_MSG} "You may use the following build options:"
60
	${ECHO_MSG} ""
61
	${ECHO_MSG} "    WITH_SUPHP=yes   Install appropriately for use with"
62
	${ECHO_MSG} "                     the www/suphp port [default: no]"
63
	${ECHO_MSG} ""
64
65
post-patch:
66
	${MV} ${WRKSRC}/${CFGFILE} ${WRKSRC}/${CFGFILE}.sample
67
	cd ${WRKSRC} ; \
68
	${FIND} . ! -type d ! -name ${CFGFILE}.sample | ${SORT} | \
69
	    ${SED} -e "s,^\.,%%MYADMDIR%%,"           >${PLIST} ; \
70
	${CAT} ${PKGDIR}/pkg-plist-chunk             >>${PLIST} ; \
71
	${FIND} . -type d | ${SORT} -r | ${SED} \
72
	     -e "s,^\.$$,@unexec rmdir %D/%%MYADMDIR%% 2>/dev/null || true," \
73
	     -e "s,^\.,@dirrm %%MYADMDIR%%,"         >>${PLIST}
74
	${SED} -e 's,%%MYADMDIR%%,${MYADMDIR},g' \
75
	       -e 's,%%PREFIX%%,${PREFIX},g'     \
76
	       -e 's,%%PKGNAME%%,${PKGNAME},g' ${MSG_SKEL} > ${PKGMESSAGE}
77
.if defined(WITH_SUPHP)
78
	${SED} ${SED_SCRIPT} ${PKGINST_SKEL}   > ${PKGINSTALL}
79
	${SED} ${SED_SCRIPT} ${PKGDEINST_SKEL} > ${PKGDEINSTALL}
80
.endif
81
82
pre-install:
83
.if defined(WITH_SUPHP)
84
	${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
85
.endif
86
87
do-install: install-app install-conf
88
89
install-app:
90
	cd ${WRKSRC} ; \
91
	for src in $$( ${FIND} . ! -name .cvsignore ) ; do \
92
	    dst=${PREFIX}/${MYADMDIR}$${src#.} ; \
93
	    if ${TEST} -d $$src ; then \
94
	        ${MKDIR} $$dst ; \
95
	    else \
96
	        ${INSTALL_DATA} $$src $$dst ; \
97
	    fi \
98
	done
99
100
install-conf: install-app
101
	cd ${PREFIX}/${MYADMDIR} ; \
102
	${CHMOD} 0640 ${CFGFILE}.sample ; \
103
	${CHGRP} ${MYADMGRP} ${CFGFILE}.sample ; \
104
	if ${TEST} ! -f ${CFGFILE} ; then \
105
	    ${CP} -p ${CFGFILE}.sample ${CFGFILE} ; \
106
	fi
107
108
post-install:
109
.if defined(WITH_SUPHP)
110
	${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
111
.endif
112
	${CAT} ${PKGMESSAGE}
34
113
35
.include <bsd.port.mk>
114
.include <bsd.port.mk>
(-)phpmyadmin/pkg-deinstall-suphp (+26 lines)
Line 0 Link Here
1
#!/bin/sh
2
#
3
# $FreeBSD$
4
#
5
6
case $2 in
7
    POST-DEINSTALL)
8
    cat <<EOMSG
9
The phpMyAdmin-suphp port has been deleted.
10
If you are not upgrading and don't intend to use
11
phpMyAdmin any more then you may wish to delete
12
the %%MYADMUSR%% account, which can be done with
13
the following command:
14
15
    # pw userdel %%MYADMUSR%%
16
EOMSG
17
    if [ -d %%PREFIX%%/%%MYADMDIR%% ] ; then
18
	echo "    # rm -rf %%PREFIX%%/%%MYADMDIR%%/"
19
    fi
20
    echo
21
    ;;
22
esac
23
24
#
25
# That's All Folks!
26
#
(-)phpmyadmin/pkg-install-suphp (+98 lines)
Line 0 Link Here
1
#!/bin/sh
2
#
3
# $FreeBSD$
4
#
5
6
PATH=/usr/sbin:/usr/bin:/bin ; export PATH
7
8
myadmdir=%%PREFIX%%/%%MYADMDIR%%
9
myadmusr=%%MYADMUSR%%
10
myadmgrp=%%MYADMGRP%%
11
12
myadmgcos="phpMyAdmin Owner"
13
myadmhome=/nonexistent
14
myadmshell=/sbin/nologin
15
16
create_group() {
17
    local user group gcos home shell
18
19
    user=$1
20
    group=$2
21
    gcos=$3
22
    home=$4
23
    shell=$5
24
25
    if pw groupadd -n $group ; then
26
	echo "===> Group $group created"
27
    else
28
	cat <<-EOERRORMSG
29
	*** Failed to create the $group group.
30
31
	Please add the $user user and $group group
32
	manually with the commands:
33
34
	    pw groupadd -n $group
35
	    pw useradd -n $user -g $group -c "$gcos" \\
36
	        -d $home -s $shell -h -
37
	    
38
	and retry installing this package.
39
	EOERRORMSG
40
	exit 1
41
    fi
42
}
43
44
45
create_user() {
46
    local user group gcos home shell
47
48
    user=$1
49
    group=$2
50
    gcos=$3
51
    home=$4
52
    shell=$5
53
54
    if pw useradd -n $user -g $group -c "$gcos" -d $home -s $shell -h - ; then
55
	echo "===> Created $user user"
56
    else
57
	cat <<-EOERRORMSG
58
	*** Failed to create the $user user.
59
60
	Please add the $user user manually with the command:
61
62
	    pw useradd -n $user -g $group -c "$gcos" \\
63
		        -d $home -s $shell -h -
64
65
	and retry installing this package.
66
	EOERRORMSG
67
	exit 1
68
    fi
69
}
70
71
72
case $2 in
73
    PRE-INSTALL)
74
75
        # Create the myadm user and group if they do not already exist
76
77
        if pw user show -n $myadmusr >/dev/null 2>&1 ; then
78
	    echo "===> Using pre-existing user $myadmusr"
79
	else
80
	    if ! pw group show -n $myadmgrp >/dev/null 2>&1 ; then
81
		create_group $myadmusr $myadmgrp "$myadmgcos" $myadmhome \
82
		    $myadmshell
83
	    fi
84
	    create_user $myadmusr $myadmgrp "$myadmgcos" $myadmhome $myadmshell
85
	fi
86
	;;
87
    POST-INSTALL)
88
89
    	# Change ownership of the phpMyAdm directory
90
91
        echo "===> Adjusting file ownership in $myadmdir"
92
        chown -R $myadmusr:$myadmgrp $myadmdir || exit 1
93
	;;
94
esac
95
96
#
97
# That's All Folks!
98
#
(-)phpmyadmin/pkg-message (+11 lines)
Line 0 Link Here
1
2
%%PKGNAME%% has been installed into:
3
4
    %%PREFIX%%/%%MYADMDIR%%
5
6
Please edit config.inc.php to suit your needs.
7
8
To make phpMyAdmin available through your web site, I suggest
9
that you add the following to httpd.conf:
10
11
    Alias /phpmyadmin/ "%%PREFIX%%/%%MYADMDIR%%/"
(-)phpmyadmin/pkg-plist (-321 lines)
Lines 1-321 Link Here
1
%%MYADMDIR%%/CREDITS
2
%%MYADMDIR%%/ChangeLog
3
%%MYADMDIR%%/Documentation.html
4
%%MYADMDIR%%/Documentation.txt
5
%%MYADMDIR%%/INSTALL
6
%%MYADMDIR%%/LICENSE
7
%%MYADMDIR%%/README
8
%%MYADMDIR%%/RELEASE-DATE-2.5.6
9
%%MYADMDIR%%/TODO
10
%%MYADMDIR%%/browse_foreigners.php
11
%%MYADMDIR%%/chk_rel.php
12
%%MYADMDIR%%/config.inc.php.sample
13
%%MYADMDIR%%/css/phpmyadmin.css.php
14
%%MYADMDIR%%/db_create.php
15
%%MYADMDIR%%/db_datadict.php
16
%%MYADMDIR%%/db_details.php
17
%%MYADMDIR%%/db_details_common.php
18
%%MYADMDIR%%/db_details_db_info.php
19
%%MYADMDIR%%/db_details_export.php
20
%%MYADMDIR%%/db_details_importdocsql.php
21
%%MYADMDIR%%/db_details_links.php
22
%%MYADMDIR%%/db_details_qbe.php
23
%%MYADMDIR%%/db_details_structure.php
24
%%MYADMDIR%%/db_printview.php
25
%%MYADMDIR%%/db_search.php
26
%%MYADMDIR%%/docs.css
27
%%MYADMDIR%%/export.php
28
%%MYADMDIR%%/footer.inc.php
29
%%MYADMDIR%%/header.inc.php
30
%%MYADMDIR%%/header_printview.inc.php
31
%%MYADMDIR%%/images/arrow_ltr.gif
32
%%MYADMDIR%%/images/arrow_rtl.gif
33
%%MYADMDIR%%/images/asc_order.png
34
%%MYADMDIR%%/images/browse.png
35
%%MYADMDIR%%/images/button_bookmark.png
36
%%MYADMDIR%%/images/button_browse.png
37
%%MYADMDIR%%/images/button_drop.png
38
%%MYADMDIR%%/images/button_edit.png
39
%%MYADMDIR%%/images/button_empty.png
40
%%MYADMDIR%%/images/button_fulltext.png
41
%%MYADMDIR%%/images/button_index.png
42
%%MYADMDIR%%/images/button_insert.png
43
%%MYADMDIR%%/images/button_nobrowse.png
44
%%MYADMDIR%%/images/button_nodrop.png
45
%%MYADMDIR%%/images/button_noempty.png
46
%%MYADMDIR%%/images/button_nofulltext.png
47
%%MYADMDIR%%/images/button_noindex.png
48
%%MYADMDIR%%/images/button_noprimary.png
49
%%MYADMDIR%%/images/button_noselect.png
50
%%MYADMDIR%%/images/button_nounique.png
51
%%MYADMDIR%%/images/button_primary.png
52
%%MYADMDIR%%/images/button_properties.png
53
%%MYADMDIR%%/images/button_select.png
54
%%MYADMDIR%%/images/button_smallbrowse.png
55
%%MYADMDIR%%/images/button_unique.png
56
%%MYADMDIR%%/images/desc_order.png
57
%%MYADMDIR%%/images/fulltext.png
58
%%MYADMDIR%%/images/item_ltr.png
59
%%MYADMDIR%%/images/item_rtl.png
60
%%MYADMDIR%%/images/minus.png
61
%%MYADMDIR%%/images/partialtext.png
62
%%MYADMDIR%%/images/plus.png
63
%%MYADMDIR%%/images/pma_logo.png
64
%%MYADMDIR%%/images/spacer.gif
65
%%MYADMDIR%%/images/vertical_line.png
66
%%MYADMDIR%%/index.php
67
%%MYADMDIR%%/lang/add_message.sh
68
%%MYADMDIR%%/lang/add_message_file.sh
69
%%MYADMDIR%%/lang/afrikaans-iso-8859-1.inc.php
70
%%MYADMDIR%%/lang/afrikaans-utf-8.inc.php
71
%%MYADMDIR%%/lang/albanian-iso-8859-1.inc.php
72
%%MYADMDIR%%/lang/albanian-utf-8.inc.php
73
%%MYADMDIR%%/lang/arabic-utf-8.inc.php
74
%%MYADMDIR%%/lang/arabic-windows-1256.inc.php
75
%%MYADMDIR%%/lang/azerbaijani-iso-8859-9.inc.php
76
%%MYADMDIR%%/lang/azerbaijani-utf-8.inc.php
77
%%MYADMDIR%%/lang/basque-iso-8859-1.inc.php
78
%%MYADMDIR%%/lang/basque-utf-8.inc.php
79
%%MYADMDIR%%/lang/bosnian-utf-8.inc.php
80
%%MYADMDIR%%/lang/bosnian-windows-1250.inc.php
81
%%MYADMDIR%%/lang/brazilian_portuguese-iso-8859-1.inc.php
82
%%MYADMDIR%%/lang/brazilian_portuguese-utf-8.inc.php
83
%%MYADMDIR%%/lang/bulgarian-koi8-r.inc.php
84
%%MYADMDIR%%/lang/bulgarian-utf-8.inc.php
85
%%MYADMDIR%%/lang/bulgarian-windows-1251.inc.php
86
%%MYADMDIR%%/lang/catalan-iso-8859-1.inc.php
87
%%MYADMDIR%%/lang/catalan-utf-8.inc.php
88
%%MYADMDIR%%/lang/check_lang.sh
89
%%MYADMDIR%%/lang/chinese_big5-utf-8.inc.php
90
%%MYADMDIR%%/lang/chinese_big5.inc.php
91
%%MYADMDIR%%/lang/chinese_gb-utf-8.inc.php
92
%%MYADMDIR%%/lang/chinese_gb.inc.php
93
%%MYADMDIR%%/lang/croatian-iso-8859-2.inc.php
94
%%MYADMDIR%%/lang/croatian-utf-8.inc.php
95
%%MYADMDIR%%/lang/croatian-windows-1250.inc.php
96
%%MYADMDIR%%/lang/czech-iso-8859-2.inc.php
97
%%MYADMDIR%%/lang/czech-utf-8.inc.php
98
%%MYADMDIR%%/lang/czech-windows-1250.inc.php
99
%%MYADMDIR%%/lang/danish-iso-8859-1.inc.php
100
%%MYADMDIR%%/lang/danish-utf-8.inc.php
101
%%MYADMDIR%%/lang/dutch-iso-8859-1.inc.php
102
%%MYADMDIR%%/lang/dutch-utf-8.inc.php
103
%%MYADMDIR%%/lang/english-iso-8859-1.inc.php
104
%%MYADMDIR%%/lang/english-utf-8.inc.php
105
%%MYADMDIR%%/lang/estonian-iso-8859-1.inc.php
106
%%MYADMDIR%%/lang/estonian-utf-8.inc.php
107
%%MYADMDIR%%/lang/finnish-iso-8859-1.inc.php
108
%%MYADMDIR%%/lang/finnish-utf-8.inc.php
109
%%MYADMDIR%%/lang/french-iso-8859-1.inc.php
110
%%MYADMDIR%%/lang/french-utf-8.inc.php
111
%%MYADMDIR%%/lang/galician-iso-8859-1.inc.php
112
%%MYADMDIR%%/lang/galician-utf-8.inc.php
113
%%MYADMDIR%%/lang/georgian-utf-8.inc.php
114
%%MYADMDIR%%/lang/german-iso-8859-1.inc.php
115
%%MYADMDIR%%/lang/german-utf-8.inc.php
116
%%MYADMDIR%%/lang/greek-iso-8859-7.inc.php
117
%%MYADMDIR%%/lang/greek-utf-8.inc.php
118
%%MYADMDIR%%/lang/hebrew-iso-8859-8-i.inc.php
119
%%MYADMDIR%%/lang/hindi-utf-8.inc.php
120
%%MYADMDIR%%/lang/hungarian-iso-8859-2.inc.php
121
%%MYADMDIR%%/lang/hungarian-utf-8.inc.php
122
%%MYADMDIR%%/lang/indonesian-iso-8859-1.inc.php
123
%%MYADMDIR%%/lang/indonesian-utf-8.inc.php
124
%%MYADMDIR%%/lang/italian-iso-8859-1.inc.php
125
%%MYADMDIR%%/lang/italian-utf-8.inc.php
126
%%MYADMDIR%%/lang/japanese-euc.inc.php
127
%%MYADMDIR%%/lang/japanese-sjis.inc.php
128
%%MYADMDIR%%/lang/japanese-utf-8.inc.php
129
%%MYADMDIR%%/lang/korean-ks_c_5601-1987.inc.php
130
%%MYADMDIR%%/lang/latvian-utf-8.inc.php
131
%%MYADMDIR%%/lang/latvian-windows-1257.inc.php
132
%%MYADMDIR%%/lang/lithuanian-utf-8.inc.php
133
%%MYADMDIR%%/lang/lithuanian-windows-1257.inc.php
134
%%MYADMDIR%%/lang/malay-iso-8859-1.inc.php
135
%%MYADMDIR%%/lang/malay-utf-8.inc.php
136
%%MYADMDIR%%/lang/norwegian-iso-8859-1.inc.php
137
%%MYADMDIR%%/lang/norwegian-utf-8.inc.php
138
%%MYADMDIR%%/lang/persian-utf-8.inc.php
139
%%MYADMDIR%%/lang/persian-windows-1256.inc.php
140
%%MYADMDIR%%/lang/polish-iso-8859-2.inc.php
141
%%MYADMDIR%%/lang/polish-utf-8.inc.php
142
%%MYADMDIR%%/lang/portuguese-iso-8859-1.inc.php
143
%%MYADMDIR%%/lang/portuguese-utf-8.inc.php
144
%%MYADMDIR%%/lang/remove_message.sh
145
%%MYADMDIR%%/lang/romanian-iso-8859-1.inc.php
146
%%MYADMDIR%%/lang/romanian-utf-8.inc.php
147
%%MYADMDIR%%/lang/russian-dos-866.inc.php
148
%%MYADMDIR%%/lang/russian-koi8-r.inc.php
149
%%MYADMDIR%%/lang/russian-utf-8.inc.php
150
%%MYADMDIR%%/lang/russian-windows-1251.inc.php
151
%%MYADMDIR%%/lang/serbian_cyrillic-utf-8.inc.php
152
%%MYADMDIR%%/lang/serbian_cyrillic-windows-1251.inc.php
153
%%MYADMDIR%%/lang/serbian_latin-utf-8.inc.php
154
%%MYADMDIR%%/lang/serbian_latin-windows-1250.inc.php
155
%%MYADMDIR%%/lang/slovak-iso-8859-2.inc.php
156
%%MYADMDIR%%/lang/slovak-utf-8.inc.php
157
%%MYADMDIR%%/lang/slovak-windows-1250.inc.php
158
%%MYADMDIR%%/lang/slovenian-iso-8859-2.inc.php
159
%%MYADMDIR%%/lang/slovenian-utf-8.inc.php
160
%%MYADMDIR%%/lang/slovenian-windows-1250.inc.php
161
%%MYADMDIR%%/lang/sort_lang.sh
162
%%MYADMDIR%%/lang/spanish-iso-8859-1.inc.php
163
%%MYADMDIR%%/lang/spanish-utf-8.inc.php
164
%%MYADMDIR%%/lang/swedish-iso-8859-1.inc.php
165
%%MYADMDIR%%/lang/swedish-utf-8.inc.php
166
%%MYADMDIR%%/lang/sync_lang.sh
167
%%MYADMDIR%%/lang/thai-tis-620.inc.php
168
%%MYADMDIR%%/lang/thai-utf-8.inc.php
169
%%MYADMDIR%%/lang/translatecount.sh
170
%%MYADMDIR%%/lang/turkish-iso-8859-9.inc.php
171
%%MYADMDIR%%/lang/turkish-utf-8.inc.php
172
%%MYADMDIR%%/lang/ukrainian-utf-8.inc.php
173
%%MYADMDIR%%/lang/ukrainian-windows-1251.inc.php
174
%%MYADMDIR%%/ldi_check.php
175
%%MYADMDIR%%/ldi_table.php
176
%%MYADMDIR%%/left.php
177
%%MYADMDIR%%/libraries/auth/config.auth.lib.php
178
%%MYADMDIR%%/libraries/auth/cookie.auth.lib.php
179
%%MYADMDIR%%/libraries/auth/http.auth.lib.php
180
%%MYADMDIR%%/libraries/blowfish.php
181
%%MYADMDIR%%/libraries/bookmark.lib.php
182
%%MYADMDIR%%/libraries/charset_conversion.lib.php
183
%%MYADMDIR%%/libraries/common.lib.php
184
%%MYADMDIR%%/libraries/config_import.lib.php
185
%%MYADMDIR%%/libraries/db_config.lib.php
186
%%MYADMDIR%%/libraries/db_table_exists.lib.php
187
%%MYADMDIR%%/libraries/dbg/profiling.php
188
%%MYADMDIR%%/libraries/dbg/setup.php
189
%%MYADMDIR%%/libraries/defines.lib.php
190
%%MYADMDIR%%/libraries/defines_mysql.lib.php
191
%%MYADMDIR%%/libraries/display_export.lib.php
192
%%MYADMDIR%%/libraries/display_tbl.lib.php
193
%%MYADMDIR%%/libraries/display_tbl_links.lib.php
194
%%MYADMDIR%%/libraries/dom-drag.js
195
%%MYADMDIR%%/libraries/export/csv.php
196
%%MYADMDIR%%/libraries/export/latex.php
197
%%MYADMDIR%%/libraries/export/sql.php
198
%%MYADMDIR%%/libraries/export/xml.php
199
%%MYADMDIR%%/libraries/fpdf/README
200
%%MYADMDIR%%/libraries/fpdf/font/courier.php
201
%%MYADMDIR%%/libraries/fpdf/font/helvetica.php
202
%%MYADMDIR%%/libraries/fpdf/font/helveticab.php
203
%%MYADMDIR%%/libraries/fpdf/font/helveticabi.php
204
%%MYADMDIR%%/libraries/fpdf/font/helveticai.php
205
%%MYADMDIR%%/libraries/fpdf/font/symbol.php
206
%%MYADMDIR%%/libraries/fpdf/font/tahoma.php
207
%%MYADMDIR%%/libraries/fpdf/font/tahomab.php
208
%%MYADMDIR%%/libraries/fpdf/font/times.php
209
%%MYADMDIR%%/libraries/fpdf/font/timesb.php
210
%%MYADMDIR%%/libraries/fpdf/font/timesbi.php
211
%%MYADMDIR%%/libraries/fpdf/font/timesi.php
212
%%MYADMDIR%%/libraries/fpdf/font/zapfdingbats.php
213
%%MYADMDIR%%/libraries/fpdf/fpdf.php
214
%%MYADMDIR%%/libraries/functions.js
215
%%MYADMDIR%%/libraries/get_foreign.lib.php
216
%%MYADMDIR%%/libraries/grab_globals.lib.php
217
%%MYADMDIR%%/libraries/header_http.inc.php
218
%%MYADMDIR%%/libraries/header_meta_style.inc.php
219
%%MYADMDIR%%/libraries/indexes.js
220
%%MYADMDIR%%/libraries/ip_allow_deny.lib.php
221
%%MYADMDIR%%/libraries/kanji-encoding.lib.php
222
%%MYADMDIR%%/libraries/left.js
223
%%MYADMDIR%%/libraries/mysql_charsets.lib.php
224
%%MYADMDIR%%/libraries/mysql_wrappers.lib.php
225
%%MYADMDIR%%/libraries/ob.lib.php
226
%%MYADMDIR%%/libraries/read_dump.lib.php
227
%%MYADMDIR%%/libraries/relation.lib.php
228
%%MYADMDIR%%/libraries/relation_cleanup.lib.php
229
%%MYADMDIR%%/libraries/select_lang.lib.php
230
%%MYADMDIR%%/libraries/server_privileges.js
231
%%MYADMDIR%%/libraries/sqlparser.data.php
232
%%MYADMDIR%%/libraries/sqlparser.lib.php
233
%%MYADMDIR%%/libraries/sqlvalidator.class.php
234
%%MYADMDIR%%/libraries/sqlvalidator.lib.php
235
%%MYADMDIR%%/libraries/string.lib.php
236
%%MYADMDIR%%/libraries/tbl_change.js
237
%%MYADMDIR%%/libraries/transformations.lib.php
238
%%MYADMDIR%%/libraries/transformations/README
239
%%MYADMDIR%%/libraries/transformations/TEMPLATE
240
%%MYADMDIR%%/libraries/transformations/TEMPLATE_MIMETYPE
241
%%MYADMDIR%%/libraries/transformations/application_octetstream__download.inc.php
242
%%MYADMDIR%%/libraries/transformations/generator.sh
243
%%MYADMDIR%%/libraries/transformations/global.inc.php
244
%%MYADMDIR%%/libraries/transformations/image_jpeg__inline.inc.php
245
%%MYADMDIR%%/libraries/transformations/image_jpeg__link.inc.php
246
%%MYADMDIR%%/libraries/transformations/image_png__inline.inc.php
247
%%MYADMDIR%%/libraries/transformations/overview.php
248
%%MYADMDIR%%/libraries/transformations/template_generator.sh
249
%%MYADMDIR%%/libraries/transformations/template_generator_mimetype.sh
250
%%MYADMDIR%%/libraries/transformations/text_plain__dateformat.inc.php
251
%%MYADMDIR%%/libraries/transformations/text_plain__external.inc.php
252
%%MYADMDIR%%/libraries/transformations/text_plain__formatted.inc.php
253
%%MYADMDIR%%/libraries/transformations/text_plain__imagelink.inc.php
254
%%MYADMDIR%%/libraries/transformations/text_plain__link.inc.php
255
%%MYADMDIR%%/libraries/transformations/text_plain__substr.inc.php
256
%%MYADMDIR%%/libraries/url_generating.lib.php
257
%%MYADMDIR%%/libraries/user_password.js
258
%%MYADMDIR%%/libraries/zip.lib.php
259
%%MYADMDIR%%/main.php
260
%%MYADMDIR%%/mult_submits.inc.php
261
%%MYADMDIR%%/pdf_pages.php
262
%%MYADMDIR%%/pdf_schema.php
263
%%MYADMDIR%%/phpinfo.php
264
%%MYADMDIR%%/queryframe.php
265
%%MYADMDIR%%/querywindow.php
266
%%MYADMDIR%%/read_dump.php
267
%%MYADMDIR%%/scripts/check_lang.php
268
%%MYADMDIR%%/scripts/convertcfg.pl
269
%%MYADMDIR%%/scripts/create-release.sh
270
%%MYADMDIR%%/scripts/create_tables.sql
271
%%MYADMDIR%%/scripts/decode_bug.php
272
%%MYADMDIR%%/scripts/extchg.sh
273
%%MYADMDIR%%/scripts/inno2pma.sh
274
%%MYADMDIR%%/scripts/remove_control_m.sh
275
%%MYADMDIR%%/server_collations.php
276
%%MYADMDIR%%/server_common.inc.php
277
%%MYADMDIR%%/server_databases.php
278
%%MYADMDIR%%/server_export.php
279
%%MYADMDIR%%/server_links.inc.php
280
%%MYADMDIR%%/server_privileges.php
281
%%MYADMDIR%%/server_processlist.php
282
%%MYADMDIR%%/server_status.php
283
%%MYADMDIR%%/server_variables.php
284
%%MYADMDIR%%/sql.php
285
%%MYADMDIR%%/tbl_addfield.php
286
%%MYADMDIR%%/tbl_alter.php
287
%%MYADMDIR%%/tbl_change.php
288
%%MYADMDIR%%/tbl_create.php
289
%%MYADMDIR%%/tbl_indexes.php
290
%%MYADMDIR%%/tbl_move_copy.php
291
%%MYADMDIR%%/tbl_printview.php
292
%%MYADMDIR%%/tbl_properties.inc.php
293
%%MYADMDIR%%/tbl_properties.php
294
%%MYADMDIR%%/tbl_properties_common.php
295
%%MYADMDIR%%/tbl_properties_export.php
296
%%MYADMDIR%%/tbl_properties_links.php
297
%%MYADMDIR%%/tbl_properties_operations.php
298
%%MYADMDIR%%/tbl_properties_structure.php
299
%%MYADMDIR%%/tbl_properties_table_info.php
300
%%MYADMDIR%%/tbl_query_box.php
301
%%MYADMDIR%%/tbl_relation.php
302
%%MYADMDIR%%/tbl_rename.php
303
%%MYADMDIR%%/tbl_replace.php
304
%%MYADMDIR%%/tbl_replace_fields.php
305
%%MYADMDIR%%/tbl_row_delete.php
306
%%MYADMDIR%%/tbl_select.php
307
%%MYADMDIR%%/transformation_wrapper.php
308
%%MYADMDIR%%/translators.html
309
%%MYADMDIR%%/user_password.php
310
@dirrm %%MYADMDIR%%/scripts
311
@dirrm %%MYADMDIR%%/libraries/transformations
312
@dirrm %%MYADMDIR%%/libraries/fpdf/font
313
@dirrm %%MYADMDIR%%/libraries/fpdf
314
@dirrm %%MYADMDIR%%/libraries/export
315
@dirrm %%MYADMDIR%%/libraries/dbg
316
@dirrm %%MYADMDIR%%/libraries/auth
317
@dirrm %%MYADMDIR%%/libraries
318
@dirrm %%MYADMDIR%%/lang
319
@dirrm %%MYADMDIR%%/images
320
@dirrm %%MYADMDIR%%/css
321
@dirrm %%MYADMDIR%%
(-)phpmyadmin/pkg-plist-chunk (+7 lines)
Line 0 Link Here
1
@mode 640
2
@group %%MYADMGRP%%
3
@unexec if cmp -s %D/%%MYADMDIR%%/config.inc.php.sample %D/%%MYADMDIR%%/config.inc.php ; then rm -f %D/%%MYADMDIR%%/config.inc.php ; fi
4
%%MYADMDIR%%/config.inc.php.sample
5
@exec [ ! -f %B/config.inc.php ] && cp -p %B/%f %B/config.inc.php || true
6
@mode
7
@group

Return to bug 66697