source: trunk/third/bonobo-conf/bonobo-conf.spec @ 16762

Revision 16762, 1.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16761, which included commits to RCS files with non-trunk default branches.
Line 
1%define name            bonobo-conf
2%define ver             0.14
3%define rel             %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
4
5Name:           %name
6Summary:        Bonobo configuration moniker.
7Version:        %ver
8Release:        1
9Copyright:      GPL
10Group:          System Environment/Libraries
11Source:         %{name}-%{ver}.tar.gz
12URL:            http://www.gnome.org/
13BuildRoot:      %{_tmppath}/%{name}-%{ver}-root
14Requires:       bonobo >= 1.0.0
15
16%description
17Bonobo configuration moniker.
18
19%package devel
20Summary:        Libraries and include files for the configuration moniker.
21Group:          Development/Libraries
22Requires:       %name = %{PACKAGE_VERSION}
23
24%description devel
25This package provides the necessary development libraries and include
26files to allow you to develop programs using the Bonobo configuration moniker.
27
28%prep
29%setup
30
31%build
32%configure
33make
34
35%install
36%makeinstall
37
38%clean
39
40%post
41if ! grep %{_libdir} /etc/ld.so.conf > /dev/null ; then
42  echo "%{_libdir}" >> /etc/ld.so.conf
43fi
44 
45/sbin/ldconfig
46 
47%postun -p /sbin/ldconfig
48
49%files
50%defattr(-, root, root)
51%doc AUTHORS COPYING ChangeLog NEWS README
52%{_bindir}/*
53%{_libdir}/bonobo/monikers
54%{_libdir}/*.sh
55%{_libdir}/lib*.so.*
56%{_datadir}/idl/*.idl
57%{_datadir}/locale/*/LC_MESSAGES/*.mo
58%{_datadir}/oaf/*.oaf
59
60%files devel
61%defattr(-, root, root)
62%{_includedir}/bonobo-conf
63%{_libdir}/lib*.so
64%{_libdir}/lib*.a
65%{_libdir}/lib*.la
66
67
68%changelog
69* Wed Jun 06 2001 Jens Finke <jens@gnome.org>
70- created spec file
Note: See TracBrowser for help on using the repository browser.