source: trunk/third/control-center/control-center.spec @ 17134

Revision 17134, 3.5 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r17133, which included commits to RCS files with non-trunk default branches.
Line 
1# Note that this is NOT a relocatable package
2%define ver      1.4.0.4
3%define  RELEASE 1
4%define  rel     %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
5%define prefix   /usr
6
7Summary: The GNOME control center.
8Name: control-center
9Version: %ver
10Release: %rel
11Copyright: LGPL
12Group: System Environment/Libraries
13Source: ftp://ftp.gnome.org/pub/control-center-%{ver}.tar.gz
14
15BuildRoot: /var/tmp/control-center-%{PACKAGE_VERSION}-root
16Obsoletes: gnome
17
18URL: http://www.gnome.org
19Docdir: %{prefix}/doc
20
21
22Requires: xscreensaver >= 3.00
23Requires: gnome-libs >= 1.0.0
24Requires: ORBit >= 0.5.6
25Requires: gnome-vfs >= 0.9
26
27%description
28Control-center is a configuration tool for easily
29setting up your GNOME environment.
30
31GNOME is the GNU Network Object Model Environment. That's
32a fancy name, but really GNOME is a nice GUI desktop
33environment.
34
35It's a powerful, easy to configure environment which
36helps to make your computer easy to use.
37
38%package devel
39Summary: GNOME control-center development files.
40Group: System Environment/Libraries
41Requires: control-center
42
43%description devel
44If you're interested in developing panels for the GNOME
45control center, you'll want to install this package.
46
47Control-center-devel helps you create the 'capplets'
48which are used in the control center.
49
50%changelog
51* Sat Feb 27 1999 Gregory McLean <gregm@comstar.net>
52- version 1.0.0
53- updated the requirements to match the current released versions of packages.
54- Added an alpha specfic rule as libtool don't understand _all_ alpha models.
55
56* Mon Feb 15 1999 Michael Fulbright <drmike@redhat.com>
57- version 0.99.8.1
58- added etc/CORBA/servers/* to file list
59
60* Fri Feb 12 1999 Michael Fulbright <drmike@redhat.com>
61- update to 0.99.8
62- added /usr/lib/cappletConf.sh
63
64* Mon Feb 08 1999 The Rasterman <raster@redhat.com>
65- update to 0.99.5.1
66
67* Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
68- update to 0.99.5
69
70* Mon Jan 20 1999 Michael Fulbright <drmike@redhat.com>
71- update to 0.99.3.1
72
73* Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
74- update to 0.99.3
75- seems like patch for non-standard xscreensaver placement was already in
76  prestine sources(?)
77
78* Wed Jan 06 1999 Jonathan Blandford <jrb@redhat.com>
79- updated to 0.99.1
80- temporary hack patch to get path to work to non-standard placement
81  of xscreensaver binaries in RH 5.2
82
83* Wed Dec 16 1998 Jonathan Blandford <jrb@redhat.com>
84- Created for the new control-center branch
85
86
87%prep
88%setup
89
90%build
91# libtool can't deal with all the alpha variations but and alpha is an alpha
92# in this context.
93%ifarch alpha
94   CFLAGS="$RPM_OPT_FLAGS" ./configure --host=alpha-redhat-linux --prefix=%prefix
95%else
96   CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --sysconfdir=/etc
97%endif
98if [ ! -z "$SMP" ]; then
99        make -j$SMP MAKE="make -j$SMP"
100else
101        make
102fi
103
104%install
105rm -rf $RPM_BUILD_ROOT
106mkdir -p $RPM_BUILD_ROOT/etc
107make sysconfdir=$RPM_BUILD_ROOT/etc prefix=$RPM_BUILD_ROOT%{prefix} install
108
109%clean
110rm -rf $RPM_BUILD_ROOT
111
112%post -p /sbin/ldconfig
113
114%postun -p /sbin/ldconfig
115
116%files
117%defattr(-, root, root)
118
119%doc AUTHORS COPYING ChangeLog NEWS README
120%{prefix}/bin/*
121%{prefix}/lib/lib*.so.*
122/etc/CORBA/servers/*
123%{prefix}/share/control-center
124%{prefix}/share/pixmaps/*
125# install is broken have not figured out quite where
126# Tue Jul 11 07:06:54 PDT 2000 Robin * Slomkowski <rslomkow@eazel.com>
127# %{prefix}/share/locale/*/*/*
128%{prefix}/share/gnome/apps/Settings/*
129%{prefix}/share/gnome/wm-properties/*
130
131%files devel
132%defattr(-, root, root)
133
134%{prefix}/lib/lib*.so
135%{prefix}/lib/*a
136%{prefix}/lib/*Conf.sh
137%{prefix}/share/idl
138%{prefix}/include/*
Note: See TracBrowser for help on using the repository browser.