source: trunk/third/gtk-engines/gtk-engines.spec @ 18625

Revision 18625, 1.5 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18624, which included commits to RCS files with non-trunk default branches.
Line 
1%define gtk_binary_version 2.2.0
2
3Summary: Default GTK+ theme engines
4Name: gtk2-engines
5Version: 2.2.0
6Release: 1
7License: GPL
8Group: X11/Libraries
9Source: gtk-engines-%{version}.tar.gz
10URL: ftp://ftp.gnome.org/pub/GNOME/sources/gtk-engines/
11BuildRoot:/var/tmp/gtk-engines-%{PACKAGE_VERSION}-root
12
13%description
14These are the graphical engines for the various GTK+ toolkit themes.
15Included themes are:
16
17  - Redmond95
18  - Pixmap
19  - Metal (Java swing-like)
20
21%prep
22%setup -n gtk-engines-%{version}
23
24%build
25# Needed for snapshot releases.
26if [ ! -f configure ]; then
27 ./autogen.sh
28fi
29
30%configure
31
32if [ "$SMP" != "" ]; then
33  make -j$SMP "MAKE=make -j$SMP"
34else
35  make
36fi
37
38%install
39
40rm -rf $RPM_BUILD_ROOT
41mkdir -p $RPM_BUILD_ROOT
42
43%makeinstall
44# Clean out files that should not be part of the rpm.
45# This is the recommended way of dealing with it for RH8
46rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/%{gtk_binary_version}/engines/*.la
47rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/%{gtk_binary_version}/engines/*.a
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52%changelog
53* Fri Jan 17 2003 Owen Taylor <otaylor@redhat.com>
54- Various fixes to good RPM practice
55
56* Thu Oct 22 2002 Christian F.K. Schaller <Uraeus@gnome.org>
57- Update SPEC file to include latest stuff
58- work on RH8
59
60* Fri Nov 20 1998 Michael Fulbright <drmike@redhat.com>
61
62- First try at a spec file
63
64%files
65%defattr(-, root, root)
66%doc COPYING README NEWS ChangeLog
67%{_datadir}/themes
68%{_libdir}/gtk-2.0/%{gtk_binary_version}/engines/*.so
69%{_libdir}/pkgconfig
70
Note: See TracBrowser for help on using the repository browser.