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
|
%define name gnome-user-docs
%define ver @VERSION@
%define RELEASE 1
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
%define localstatedir /var/lib
Summary: General GNOME User Documentation
Name: %name
Version: %ver
Release: %RELEASE
Copyright: FDL
Distribution: GNOME RPMS
Source: %{name}-%{version}.tar.gz
URL: http://developer.gnome.org/projects/gdp/
Group: Documentation
BuildArch: noarch
BuildRoot: /var/tmp/%{name}-%{ver}-root
BuildRequires: scrollkeeper >= @SCROLLKEEPER_REQUIRED@
Obsoletes: gnome-users-guide
%description
This package contains general GNOME user documentation which is not
directly associated with any particular GNOME application or package.
%prep
%setup
%build
./configure --prefix %{_prefix} --datadir=%{_datadir} \
--mandir=%{_mandir} --sysconfdir=%{_sysconfdir} \
--localstatedir=%{localstatedir}
make
%install
rm -rf $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{_prefix} \
datadir=$RPM_BUILD_ROOT%{_datadir} \
mandir=$RPM_BUILD_ROOT%{_mandir} \
sysconfdir=$RPM_BUILD_ROOT%{_sysconfdir} \
localstatedir=$RPM_BUILD_ROOT%{localstatedir} install
%clean
rm -rf $RPM_BUILD_ROOT
%post
if which scrollkeeper-update>/dev/null 2>&1; then scrollkeeper-update; fi
%postun
if which scrollkeeper-update>/dev/null 2>&1; then scrollkeeper-update; fi
%files
%defattr(-, root, root)
%doc COPYING COPYING-DOCS AUTHORS README ChangeLog NEWS INSTALL
%{_datadir}/gnome/help/*
%{_datadir}/omf/%{name}
%changelog
* Mon Apr 16 2001 Gregory Leblanc <gleblanc@grego1.cu-portland.edu>
- fixed ./configure section
- cleaned up whitespace
- fixed %files section
* Tue Mar 20 2001 Gregory Leblanc <gleblanc@cu-portland.edu>
- use RPM defined macros, remove hard-coded paths, add build
requirement for scrollkeeper
* Sun Mar 11 2001 Dan Mueth <dan@eazel.com>
- Update as we move to its own module
* Mon Nov 27 2000 Kenny Graunke <kwg@teleport.com>
- Initial cut
|