]> git.pld-linux.org Git - packages/drupal-mod-img_assist.git/blob - drupal-mod-img_assist.spec
- %banner for table creation help
[packages/drupal-mod-img_assist.git] / drupal-mod-img_assist.spec
1 %define         modname img_assist
2 Summary:        Drupal Img_assist Module
3 Summary(pl):    Modu³ Img_assist dla Drupala
4 Name:           drupal-mod-%{modname}
5 Version:        4.6.0
6 Release:        0.9
7 Epoch:          0
8 License:        GPL
9 Group:          Applications/WWW
10 Source0:        http://drupal.org/files/projects/%{modname}-%{version}.tar.gz
11 # Source0-md5:  4b1c6d159005fee95ed40b6fd17085d4
12 URL:            http://drupal.org/project/img_assist
13 BuildRequires:  rpmbuild(macros) >= 1.194
14 Requires:       drupal >= 4.6.0
15 Requires:       drupal-mod-image
16 Requires:       drupal-mod-upload
17 BuildArch:      noarch
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %define         _moddir         %{_datadir}/drupal/modules
21 %define         _htmldir        %{_datadir}/drupal/htdocs/modules
22
23 %description
24 This module generates an image icon next to the textarea fields of you
25 choice. Clicking the icon opens an image browsing window, displaying
26 all images that have been uploaded through image module, upload module
27 or img_assist. Images can be filtered by ownership or taxonomic terms
28 (categories). 
29
30 Img_assist can also be used when adding images from a rich-text
31 editor. This feature currently exists for TinyMCE. Support for
32 Htmlarea is also planned.
33
34 %description -l pl
35 Ten modu³ generuje ikony przy wybranych polach tekstowych. Klikniêcie
36 ikony otwiera okno przegl±dania obrazków, wy¶wietlaj±c wszystkie
37 obrazki umieszczone poprzez modu³ image, modu³ upload albo img_assist.
38 Obrazki mog± byæ filtrowane po w³a¶cicielu lub warunkach
39 systematycznych (kategoriach).
40
41 Img_assist mo¿na tak¿e u¿ywaæ do dodawania obrazków z edytora
42 rich-tekstu. Ta opcja aktualnie istnieje dla TinyMCE. Planowana jest
43 tak¿e obs³uga Htmlarea.
44
45 %prep
46 %setup -q -n %{modname}
47 rm -f LICENSE.txt # pure GPL
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51 install -d $RPM_BUILD_ROOT{%{_moddir},%{_htmldir}}
52
53 install *.module $RPM_BUILD_ROOT%{_moddir}
54 install *.css *.js *.jpg $RPM_BUILD_ROOT%{_htmldir}
55 ln -s ../htdocs/modules/directory.js $RPM_BUILD_ROOT%{_moddir}
56 ln -s ../htdocs/modules/properties.js $RPM_BUILD_ROOT%{_moddir}
57
58 %clean
59 rm -rf $RPM_BUILD_ROOT
60
61 %post
62 if [ "$1" = 1 ]; then
63 %banner -e %{name} <<EOF
64 To create tables needed for Drupal Img Assist module, issue these commands:
65 zcat %{_docdir}/%{name}-%{version}/%{modname}.mysql.gz | mysql drupal
66 EOF
67 fi
68
69 %files
70 %defattr(644,root,root,755)
71 %doc *.txt img_assist.{mysql,pgsql}
72 %{_moddir}/*.module
73 %{_moddir}/*.js
74 %{_htmldir}/*.*
This page took 0.101354 seconds and 4 git commands to generate.