1 |
snetram |
1.11 |
# $Id: smeserver-geneweb.spec,v 1.10 2008/04/02 15:03:57 slords Exp $ |
2 |
slords |
1.10 |
# Authority: fetcher |
3 |
|
|
# Name: Craig D. Jensen |
4 |
|
|
|
5 |
slords |
1.1 |
Summary: Package to integrate GeneWeb (V5) into SME Server |
6 |
|
|
%define name smeserver-geneweb |
7 |
|
|
Name: %{name} |
8 |
|
|
%define version 2.0 |
9 |
snetram |
1.11 |
%define release 9 |
10 |
slords |
1.1 |
Version: %{version} |
11 |
slords |
1.3 |
Release: %{release}%{?dist} |
12 |
slords |
1.2 |
License: GPL |
13 |
slords |
1.1 |
Group: Applications/Internet |
14 |
|
|
Source: %{name}-%{version}.tar.gz |
15 |
fetcher |
1.5 |
Patch1: smeserver-geneweb-2.0-pod-corrections.patch |
16 |
fetcher |
1.6 |
Patch2: smeserver-geneweb-2.0-ip_number-validation.patch |
17 |
dungog |
1.7 |
Patch3: smeserver-geneweb-2.0-locale-2008-03-11.patch |
18 |
slords |
1.9 |
Patch4: smeserver-geneweb-2.0-locale-2008-04-01.patch |
19 |
snetram |
1.11 |
Patch5: smeserver-geneweb-2.0-locale-2008-04-22.patch |
20 |
slords |
1.1 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
21 |
|
|
BuildArchitectures: noarch |
22 |
|
|
Requires: geneweb >= 5.00 |
23 |
|
|
Requires: smeserver-release >= 7.0 |
24 |
slords |
1.8 |
Requires: e-smith-formmagick >= 1.4.0-10 |
25 |
slords |
1.4 |
BuildRequires: e-smith-devtools |
26 |
slords |
1.1 |
|
27 |
|
|
%description |
28 |
|
|
This RPM must be installed after the geneweb*.el4.sme.i386.rpm package |
29 |
|
|
to complete the integration for SME Server. |
30 |
|
|
|
31 |
|
|
%changelog |
32 |
snetram |
1.11 |
* Tue Apr 22 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.0-9 |
33 |
|
|
- Added 22 April 2008 locale |
34 |
|
|
|
35 |
slords |
1.9 |
* Tue Apr 1 2008 Shad L. Lords <slords@mail.com> 2.0-8 |
36 |
|
|
- Update to UTF-8 translations |
37 |
|
|
|
38 |
slords |
1.8 |
* Wed Mar 12 2008 Shad L. Lords <slords@mail.com> - 2.0-7 |
39 |
|
|
- Add requires for e-smith-formmagick for UTF-8 support [SME: 3858] |
40 |
|
|
|
41 |
dungog |
1.7 |
* Tue Mar 11 2008 Stephen Noble <support@dungog.net> - 2.0-6 |
42 |
|
|
- add locale patch, validate lexicon in spec |
43 |
|
|
|
44 |
fetcher |
1.6 |
* Tue Jan 15 2008 Craig Jensen <craig.d.jensen@gmail.com> 2.0-5 |
45 |
|
|
- geneweb.pm fix to correctly validate IP numbers 'and' localIP |
46 |
|
|
|
47 |
fetcher |
1.5 |
* Sun Jan 13 2008 Craig Jensen <craig.d.jensen@gmail.com> 2.0-4 |
48 |
|
|
- geneweb.pm edited for pod corrections (pass podchecker) |
49 |
|
|
|
50 |
slords |
1.1 |
* Thu Apr 12 2007 Craig D. Jensen <craig.d.jensen@gmail.com> |
51 |
|
|
- [2.0-1] First companion to Geneweb v5 w/panel for admin allowing |
52 |
|
|
for setting the desired IP on the LAN for Geneweb administrative |
53 |
|
|
access. |
54 |
|
|
|
55 |
|
|
%prep |
56 |
|
|
|
57 |
|
|
rm -rf $RPM_BUILD_ROOT |
58 |
|
|
|
59 |
|
|
%setup |
60 |
fetcher |
1.5 |
%patch1 -p1 |
61 |
fetcher |
1.6 |
%patch2 -p1 |
62 |
dungog |
1.7 |
%patch3 -p1 |
63 |
slords |
1.9 |
%patch4 -p1 |
64 |
slords |
1.1 |
|
65 |
|
|
%build |
66 |
|
|
perl createlinks |
67 |
|
|
DEFAULTS=root/etc/e-smith/db/configuration/defaults/geneweb |
68 |
|
|
mkdir -p $DEFAULTS |
69 |
|
|
echo "service" > $DEFAULTS/type |
70 |
|
|
echo "disabled" > $DEFAULTS/status |
71 |
|
|
echo "127.0.0.1" >$DEFAULTS/only |
72 |
|
|
|
73 |
dungog |
1.7 |
LEXICONS=$(find root/etc/e-smith/{locale/,web/functions/} -type f ) |
74 |
|
|
for lexicon in $LEXICONS |
75 |
|
|
do |
76 |
|
|
/sbin/e-smith/validate-lexicon $lexicon |
77 |
|
|
done |
78 |
|
|
|
79 |
slords |
1.1 |
%install |
80 |
|
|
/bin/rm -rf $RPM_BUILD_ROOT |
81 |
|
|
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
82 |
|
|
/bin/rm -f %{name}-%{version}-filelist |
83 |
|
|
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
84 |
|
|
echo "%doc COPYING" >> %{name}-%{version}-filelist |
85 |
|
|
|
86 |
|
|
%files -f %{name}-%{version}-filelist |
87 |
|
|
|
88 |
|
|
%defattr(-,root,root) |
89 |
|
|
|
90 |
|
|
%clean |
91 |
|
|
rm -rf $RPM_BUILD_ROOT |
92 |
|
|
|
93 |
|
|
%pre |
94 |
|
|
|
95 |
|
|
%post |
96 |
|
|
/etc/e-smith/events/actions/navigation-conf |
97 |
|
|
#/etc/e-smith/events/actions/initialize-default-databases |
98 |
|
|
#mkdir -p /etc/e-smith/templates/etc/rc.d/init.d/masq |
99 |
|
|
#/bin/chmod 644 /etc/e-smith/templates/etc/rc.d/init.d/masq/45AllowGeneWeb |
100 |
|
|
/sbin/e-smith/expand-template /etc/rc.d/init.d/masq |
101 |
|
|
#/etc/rc.d/init.d/masq restart |
102 |
|
|
true |
103 |
|
|
|
104 |
|
|
%preun |
105 |
|
|
/sbin/e-smith/db configuration setprop geneweb status disabled |
106 |
|
|
/etc/rc.d/init.d/gwd stop |
107 |
|
|
true |
108 |
|
|
|
109 |
|
|
%postun |
110 |
|
|
/sbin/e-smith/expand-template /etc/rc.d/init.d/masq |
111 |
|
|
#/etc/rc.d/init.d/masq restart |