blob: 529a8bd3104f4d0d1e1ef6d90d406706d5cec3b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Note that this is NOT a relocatable package
%define name nautilus
%define ver @VERSION@
%define RELEASE 0_cvs_0
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
%define prefix /usr
%define sysconfdir /etc
Name: %name
Vendor: GNOME
Distribution: CVS
Summary: The Eazel Installer installs Nautilus
Version: %ver
Release: %rel
Copyright: GPL
Group: User Interface/Desktop
Source: %{name}-%{ver}.tar.gz
URL: http://nautilus.eazel.com/
BuildRoot: /var/tmp/%{name}-%{ver}-root
Docdir: %{prefix}/doc
%package installer
Summary: The Eazel Installer
Group: User Interface/Desktop
%description
Nautilus integrates access to files, applications, media, Internet-based
resources and the Web. Nautilus delivers a dynamic and rich user
experience. Nautilus is an free software project developed under the
GNU General Public License and is a core component of the GNOME desktop
project.
%description installer
The Eazel Installer installs Nautilus, which integrates access to files,
applications, media, Internet-based resources and the Web.
%changelog
* Fri Feb 23 2001 Eric Fischer <eric@eazel.com>
- created this .spec file from the nautilus .spec file
* Tue Oct 10 2000 Robin Slomkowski <rslomkow@eazel.com>
- removed obsoletes from sub packages and added mozilla and trilobite
subpackages
* Wed Apr 26 2000 Ramiro Estrugo <ramiro@eazel.com>
- created this thing
%prep
%setup
%build
%ifarch alpha
MYARCH_FLAGS="--host=alpha-redhat-linux"
%endif
LC_ALL=""
LINGUAS=""
LANG=""
export LC_ALL LINGUAS LANG
## Warning! Make sure there are no spaces or tabs after the \
## continuation character, or else the rpm demons will eat you.
CFLAGS="$RPM_OPT_FLAGS -DENABLE_SCROLLKEEPER_SUPPORT" ./configure $MYARCH_FLAGS --prefix=%{prefix} \
--enable-eazel-services \
--enable-installer \
--enable-more-warnings \
--sysconfdir=%{sysconfdir}
%install
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
makeflags="-k prefix=$RPM_BUILD_ROOT%{prefix} sysconfdir=$RPM_BUILD_ROOT%{sysconfdir}"
(cd components/services/trilobite/libtrilobite; make $makeflags)
(cd libnautilus-extensions;
make $makeflags nautilus-druid.o nautilus-druid-page-eazel.o)
(cd nautilus-installer; make $makeflags install)
%clean
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
%post
%postun
%files installer
%defattr(0555, bin, bin)
%{prefix}/bin/eazel-installer.sh
|