File: bonobo-conf.spec.in

package info (click to toggle)
bonobo-conf 0.14-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,360 kB
  • ctags: 1,412
  • sloc: ansic: 14,811; sh: 7,010; makefile: 579; yacc: 318
file content (70 lines) | stat: -rw-r--r-- 1,397 bytes parent folder | download | duplicates (2)
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
%define name		bonobo-conf
%define ver		@VERSION@
%define rel		%{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}

Name:		%name
Summary:	Bonobo configuration moniker.
Version: 	%ver
Release: 	1
Copyright: 	GPL
Group:		System Environment/Libraries
Source: 	%{name}-%{ver}.tar.gz
URL: 		http://www.gnome.org/
BuildRoot:	%{_tmppath}/%{name}-%{ver}-root
Requires:       bonobo >= 1.0.0

%description
Bonobo configuration moniker.

%package devel
Summary:	Libraries and include files for the configuration moniker.
Group:		Development/Libraries
Requires:	%name = %{PACKAGE_VERSION}

%description devel
This package provides the necessary development libraries and include
files to allow you to develop programs using the Bonobo configuration moniker.

%prep
%setup

%build
%configure
make

%install
%makeinstall

%clean

%post
if ! grep %{_libdir} /etc/ld.so.conf > /dev/null ; then
  echo "%{_libdir}" >> /etc/ld.so.conf
fi
  
/sbin/ldconfig
  
%postun -p /sbin/ldconfig

%files
%defattr(-, root, root)
%doc AUTHORS COPYING ChangeLog NEWS README
%{_bindir}/*
%{_libdir}/bonobo/monikers
%{_libdir}/*.sh
%{_libdir}/lib*.so.*
%{_datadir}/idl/*.idl
%{_datadir}/locale/*/LC_MESSAGES/*.mo
%{_datadir}/oaf/*.oaf

%files devel
%defattr(-, root, root)
%{_includedir}/bonobo-conf
%{_libdir}/lib*.so
%{_libdir}/lib*.a
%{_libdir}/lib*.la


%changelog
* Wed Jun 06 2001 Jens Finke <jens@gnome.org>
- created spec file