]> git.pld-linux.org Git - packages/phpMyAdmin.git/blame - phpMyAdmin.spec
up to 4.4.12
[packages/phpMyAdmin.git] / phpMyAdmin.spec
CommitLineData
fdda4e42
ER
1# TODO
2# - add codepress (http://codepress.org/index.php) patch
d2811cfc 3# - use system jquery (js/jquery), tcpdf (libraries/tcpdf) and php-gettext (libraries/gettext)
d8c0193b 4Summary: phpMyAdmin - web-based MySQL administration
7f70cea7 5Summary(pl.UTF-8): phpMyAdmin - administracja bazami MySQL przez WWW
78a895aa 6Name: phpMyAdmin
37684297 7Version: 4.4.12
79043a99 8Release: 1
c6adf9fe 9License: GPL v2
78a895aa 10Group: Applications/Databases/Interfaces
37684297
ER
11Source0: https://files.phpmyadmin.net/phpMyAdmin/%{version}/%{name}-%{version}-all-languages.tar.xz
12# Source0-md5: 61647a8ab0f47bf99ed3c79103237017
1bdc8ed0 13Source1: apache.conf
59d81573 14Source2: %{name}-lighttpd.conf
d0c3620a 15Patch0: %{name}-config.patch
77cf866b
ER
16Patch1: %{name}-ServerSelectDisplayName.patch
17Patch2: %{name}-ServerSelectDisplayName-config.patch
c3f22269
JB
18URL: http://www.phpmyadmin.net/
19BuildRequires: rpmbuild(macros) >= 1.268
88c63352
ER
20BuildRequires: tar >= 1:1.22
21BuildRequires: xz
054dddf6
ŁK
22# phpMyAdmin doesn't support mysql < 5.5 and won't work with php < 5.3
23Requires: mysql-libs >= 5.5
17e2933d 24Requires: php(core) >= 5.3
58fb24fd
ER
25Requires: php(ctype)
26Requires: php(filter)
27Requires: php(json)
28Requires: php(mbstring)
29Requires: php(mcrypt)
30Requires: php(mysql)
31Requires: php(pcre)
32Requires: php(session)
33Requires: php(simplexml)
f935b243 34Requires: webapps
9c9eb38c 35Requires: webserver(access)
bef21c33 36Requires: webserver(alias)
88c63352 37Requires(triggerpostun): sed >= 4.0
37684297 38Suggests: php(mysqli)
7bb50a64 39Suggests: webserver(indexfile)
7e902492 40Suggests: webserver(php)
89cacb94 41BuildArch: noarch
78a895aa
PG
42BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
43
7e9b99de 44%define _appdir %{_datadir}/%{name}
f935b243
ER
45%define _webapps /etc/webapps
46%define _webapp %{name}
47%define _sysconfdir %{_webapps}/%{_webapp}
78a895aa
PG
48
49%description
50phpMyAdmin can administer a whole MySQL-server (needs a super-user)
51but also a single database. To accomplish the latter you'll need a
52properly set up MySQL-user who can read/write only the desired
53database. It's up to you to look up the appropiate part in the MySQL
54manual. Currently phpMyAdmin can:
1d23e58d 55- create and drop databases
56- create, copy, drop and alter tables
57- delete, edit and add fields
58- execute any SQL-statement, even batch-queries
59- manage keys on fields
60- load text files into tables
37684297
ER
61- create and read dumps of tables
62- export and import data to CSV values
1d23e58d 63- administer multiple servers and single databases
ffe964b1
TP
64- check referencial integrity
65- create complex queries automatically connecting required tables
66- create PDF graphics of your database layout
37684297 67- communicate in more than 72 different languages
78a895aa 68
27fed873
JR
69%description -l pl.UTF-8
70phpMyAdmin potrafi zarządzać całymi bazami MySQL (potrzebne
71uprawnienia superużytkownika) jak i pojedynczymi bazami danych.
72Potrzebny jest użytkownik, który ma prawa zapisu/odczytu tylko tych
73baz, którymi chcemy administrować (więcej informacji w odpowiedniej
74podręcznika MySQL). Aktualnie phpMyAdmin potrafi:
75- tworzyć i usuwać bazy
76- wykonywać create, copy, drop oraz alter na tabelach
77- dodawać, usuwać i modyfikować pola
78- wykonywać dowolne zapytania SQL
79- zarządzać kluczami na rekordach
80- wczytywać tekst z plików do tabel
37684297 81- obsługiwać ponad 72 języków
27fed873
JR
82- zarządzać wieloma serwerami i pojedynczymi bazami danych
83- eksportować i importować dane do wartości CSV
84- tworzyć i czytać zrzuty tabel
78a895aa 85
78a895aa 86%prep
fb6eaade 87%setup -q -n %{name}-%{version}-all-languages
8677f286 88%patch0 -p1
aae97293 89%patch1 -p0
90%patch2 -p0
78a895aa 91
218e7bb6
ER
92# cleanup backups after patching
93find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
94
78a895aa
PG
95%install
96rm -rf $RPM_BUILD_ROOT
591b67f6 97install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_appdir}}
f935b243 98
1bdc8ed0 99cp -p *.php *.css favicon.ico robots.txt $RPM_BUILD_ROOT%{_appdir}
d2811cfc 100cp -a locale themes js libraries $RPM_BUILD_ROOT%{_appdir}
78a895aa 101
1bdc8ed0 102cp -p libraries/config.default.php $RPM_BUILD_ROOT%{_sysconfdir}/config.inc.php
f935b243 103ln -sf %{_sysconfdir}/config.inc.php $RPM_BUILD_ROOT%{_appdir}/config.inc.php
aac07012 104
1bdc8ed0
ER
105cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/httpd.conf
106cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/apache.conf
107cp -p %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/lighttpd.conf
aac07012 108
78a895aa 109%clean
95798666 110rm -rf $RPM_BUILD_ROOT
78a895aa 111
879dcd55 112%triggerin -- apache1 < 1.3.37-3, apache1-base
f935b243 113%webapp_register apache %{_webapp}
aac07012 114
879dcd55 115%triggerun -- apache1 < 1.3.37-3, apache1-base
f935b243
ER
116%webapp_unregister apache %{_webapp}
117
223a219a 118%triggerin -- apache < 2.2.0, apache-base
f935b243
ER
119%webapp_register httpd %{_webapp}
120
223a219a 121%triggerun -- apache < 2.2.0, apache-base
f935b243 122%webapp_unregister httpd %{_webapp}
aac07012 123
59d81573
PG
124%triggerin -- lighttpd
125%webapp_register lighttpd %{_webapp}
126
127%triggerun -- lighttpd
128%webapp_unregister lighttpd %{_webapp}
129
78a895aa
PG
130%files
131%defattr(644,root,root,755)
054dddf6 132%doc ChangeLog README examples
f935b243
ER
133%dir %attr(750,root,http) %{_sysconfdir}
134%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.conf
135%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/httpd.conf
59d81573 136%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/lighttpd.conf
f935b243
ER
137%attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*.php
138%dir %{_appdir}
786331fa 139%{_appdir}/js
f935b243 140%{_appdir}/libraries
591b67f6 141%{_appdir}/locale
786331fa 142%{_appdir}/themes
f935b243 143%{_appdir}/*.css
f935b243 144%{_appdir}/*.php
81443609 145%{_appdir}/favicon.ico
6f66c54e 146%{_appdir}/robots.txt
This page took 0.095711 seconds and 4 git commands to generate.