source: trunk/third/libglade2/libglade.spec.in @ 20816

Revision 20816, 1.9 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20815, which included commits to RCS files with non-trunk default branches.
Line 
1Summary: libglade library
2Name: libglade
3Version: @VERSION@
4Release: 1
5Copyright: LGPL
6Group: System Environment/Libraries
7Source: http://ftp.gnome.org/pub/GNOME/sources/libglade/2.4/libglade-%{version}.tar.gz
8BuildRoot: /var/tmp/%{name}-%{version}-root
9URL: http://www.gnome.org
10
11Requires: gtk+ >= 2.4.0
12Requires: libxml2 >= 2.4.10
13
14%description
15This library allows you to load user interfaces in your program, which are
16stored externally.  This allows alteration of the interface without
17recompilation of the program.
18
19The interfaces can also be edited with GLADE.
20
21%package devel
22Summary: Libraries, includes, etc to develop libglade applications
23Group: Development/Libraries
24Requires: libglade gtk+-devel libxml2-devel
25
26%description devel
27Libraries, include files, etc you can use to develop libglade applications.
28
29
30%changelog
31
32* Sun Nov  1 1998 James Henstridge <james@daa.com.au>
33
34- Updated the dependencies of the devel package, so users must have gtk+-devel.
35
36* Sun Oct 25 1998 James Henstridge <james@daa.com.au>
37
38- Initial release 0.0.1
39
40%prep
41%setup
42
43%build
44%configure
45make
46
47%install
48%makeinstall
49
50%post
51/sbin/ldconfig
52
53CATALOG=/etc/xml/catalog
54/usr/bin/xmlcatalog --noout --add "system" \
55    "http://glade.gnome.org/glade-2.0.dtd" \
56    %{_prefix}/share/xml/libglade/glade-2.0.dtd $CATALOG || true
57
58%postun
59/sbin/ldconfig
60
61CATALOG=/etc/xml/catalog
62/usr/bin/xmlcatalog --noout --del \
63    %{_prefix}/share/xml/libglade/glade-2.0.dtd $CATALOG || true
64
65%files
66%defattr(-, root, root)
67
68%doc AUTHORS ChangeLog NEWS README COPYING
69%{_prefix}/lib/lib*.so.*
70%{_prefix}/lib/libglade/2.0/*
71%{_prefix}/share/xml/libglade/glade-2.0.dtd
72
73%files devel
74%defattr(-, root, root)
75
76%{_prefix}/bin/*
77%{_prefix}/lib/lib*.so
78%{_prefix}/lib/*a
79%{_prefix}/include/libglade-2.0/glade/*
80%{_prefix}/lib/pkgconfig/libglade-2.0.pc
81
82%doc test-libglade.c
83%doc examples/*.glade
84%doc %{_prefix}/share/gtk-doc/html/libglade/*
Note: See TracBrowser for help on using the repository browser.