135 lines
3.4 KiB
RPMSpec
135 lines
3.4 KiB
RPMSpec
# Note that this is NOT a relocatable package
|
|
%define ver @VERSION@
|
|
%define RELEASE 1
|
|
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
|
|
%define prefix /usr
|
|
|
|
Summary: The GNOME control center.
|
|
Name: control-center
|
|
Version: %ver
|
|
Release: %rel
|
|
Copyright: LGPL
|
|
Group: System Environment/Libraries
|
|
Source: ftp://ftp.gnome.org/pub/control-center-%{ver}.tar.gz
|
|
|
|
BuildRoot: /var/tmp/control-center-%{PACKAGE_VERSION}-root
|
|
Obsoletes: gnome
|
|
|
|
URL: http://www.gnome.org
|
|
Docdir: %{prefix}/doc
|
|
|
|
|
|
Requires: xscreensaver >= 3.00
|
|
Requires: gnome-libs >= 1.0.0
|
|
Requires: ORBit >= 0.4.0
|
|
|
|
%description
|
|
Control-center is a configuration tool for easily
|
|
setting up your GNOME environment.
|
|
|
|
GNOME is the GNU Network Object Model Environment. That's
|
|
a fancy name, but really GNOME is a nice GUI desktop
|
|
environment.
|
|
|
|
It's a powerful, easy to configure environment which
|
|
helps to make your computer easy to use.
|
|
|
|
%package devel
|
|
Summary: GNOME control-center development files.
|
|
Group: System Environment/Libraries
|
|
Requires: control-center
|
|
|
|
%description devel
|
|
If you're interested in developing panels for the GNOME
|
|
control center, you'll want to install this package.
|
|
|
|
Control-center-devel helps you create the 'capplets'
|
|
which are used in the control center.
|
|
|
|
%changelog
|
|
* Sat Feb 27 1999 Gregory McLean <gregm@comstar.net>
|
|
- version 1.0.0
|
|
- updated the requirements to match the current released versions of packages.
|
|
- Added an alpha specfic rule as libtool don't understand _all_ alpha models.
|
|
|
|
* Mon Feb 15 1999 Michael Fulbright <drmike@redhat.com>
|
|
- version 0.99.8.1
|
|
- added etc/CORBA/servers/* to file list
|
|
|
|
* Fri Feb 12 1999 Michael Fulbright <drmike@redhat.com>
|
|
- update to 0.99.8
|
|
- added /usr/lib/cappletConf.sh
|
|
|
|
* Mon Feb 08 1999 The Rasterman <raster@redhat.com>
|
|
- update to 0.99.5.1
|
|
|
|
* Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
|
|
- update to 0.99.5
|
|
|
|
* Mon Jan 20 1999 Michael Fulbright <drmike@redhat.com>
|
|
- update to 0.99.3.1
|
|
|
|
* Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
|
|
- update to 0.99.3
|
|
- seems like patch for non-standard xscreensaver placement was already in
|
|
prestine sources(?)
|
|
|
|
* Wed Jan 06 1999 Jonathan Blandford <jrb@redhat.com>
|
|
- updated to 0.99.1
|
|
- temporary hack patch to get path to work to non-standard placement
|
|
of xscreensaver binaries in RH 5.2
|
|
|
|
* Wed Dec 16 1998 Jonathan Blandford <jrb@redhat.com>
|
|
- Created for the new control-center branch
|
|
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
# libtool can't deal with all the alpha variations but and alpha is an alpha
|
|
# in this context.
|
|
%ifarch alpha
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --host=alpha-redhat-linux --prefix=%prefix
|
|
%else
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --sysconfdir=/etc
|
|
%endif
|
|
if [ ! -z "$SMP" ]; then
|
|
make -j$SMP MAKE="make -j$SMP"
|
|
else
|
|
make
|
|
fi
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT/etc
|
|
make sysconfdir=$RPM_BUILD_ROOT/etc prefix=$RPM_BUILD_ROOT%{prefix} install
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
|
|
%doc AUTHORS COPYING ChangeLog NEWS README
|
|
%{prefix}/bin/*
|
|
%{prefix}/lib/lib*.so.*
|
|
/etc/CORBA/servers/*
|
|
%{prefix}/share/control-center
|
|
%{prefix}/share/pixmaps/*
|
|
%{prefix}/share/locale/*/*/*
|
|
%{prefix}/share/gnome/apps/Settings/*
|
|
%{prefix}/share/gnome/wm-properties/*
|
|
|
|
%files devel
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/lib*.so
|
|
%{prefix}/lib/*a
|
|
%{prefix}/lib/*Conf.sh
|
|
%{prefix}/share/idl
|
|
%{prefix}/include/*
|