mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
1df2ec98cb
Fri Apr 28 23:54:35 2000 Tim Janik <timj@gtk.org> * setup things for a new sub-library libgobject: * Makefile.am (SUBDIRS): added gobject * glib-config.in: feature -lgobject. * configure.in (AC_OUTPUT): generate gobject/Makefile. * glib.m4 (AM_PATH_GLIB): feature gobject module. * glib.spec.in: added %{prefix}/lib/libgobject-1.3.so.* Fri Apr 28 21:41:49 2000 Tim Janik <timj@gtk.org> * glib.h: added G_STRLOC macro. G_STRUCT_OFFSET(): signedness corrections. (G_CSET_DIGITS): list 0-9. * gscanner.c (g_scanner_config_template): use G_CSET_DIGITS. * glib.h: * gstrfuncs.c: (g_strdown): (g_strup): (g_strreverse): return the modified string instead of void, so calls to these functions can be nested. (g_strcanon): new function, canonicalizes string according to a given character set. Fri Apr 28 19:45:16 2000 Tim Janik <timj@gtk.org> * gasyncqueue.c (g_async_queue_unref): get rid of an unused variable.
95 lines
2.0 KiB
RPMSpec
95 lines
2.0 KiB
RPMSpec
# Note that this is NOT a relocatable package
|
|
%define ver @VERSION@
|
|
%define rel 1
|
|
%define prefix /usr
|
|
|
|
Summary: Handy library of utility functions
|
|
Name: glib
|
|
Version: %ver
|
|
Release: %rel
|
|
Copyright: LGPL
|
|
Group: Libraries
|
|
Source: ftp://ftp.gimp.org/pub/gtk/v1.1/glib-%{ver}.tar.gz
|
|
BuildRoot: /var/tmp/glib-%{PACKAGE_VERSION}-root
|
|
URL: http://www.gtk.org
|
|
Docdir: %{prefix}/doc
|
|
|
|
%description
|
|
Handy library of utility functions. Development libs and headers
|
|
are in glib-devel.
|
|
|
|
%package devel
|
|
Summary: GIMP Toolkit and GIMP Drawing Kit support library
|
|
Group: X11/Libraries
|
|
|
|
%description devel
|
|
Static libraries and header files for the support library for the GIMP's X
|
|
libraries, which are available as public libraries. GLIB includes generally
|
|
useful data structures.
|
|
|
|
|
|
%changelog
|
|
|
|
* Tue Jun 1 1999 Jose Mercado <jmercado@mit.edu>
|
|
- fixed version numbers in files section.
|
|
|
|
* Thu Feb 11 1999 Michael Fulbright <drmike@redhat.com>
|
|
- added libgthread to file list
|
|
|
|
* Fri Feb 05 1999 Michael Fulbright <drmike@redhat.com>
|
|
- version 1.1.15
|
|
|
|
* Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
|
|
- version 1.1.14
|
|
|
|
* Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
|
|
- version 1.1.13
|
|
|
|
* Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
|
|
- version 1.1.12
|
|
|
|
* Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
|
|
- updated in preparation for the GNOME freeze
|
|
|
|
* Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
|
|
- Split out glib package
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
|
|
make
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make prefix=$RPM_BUILD_ROOT%{prefix} install
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
|
|
%doc AUTHORS COPYING ChangeLog NEWS README
|
|
%{prefix}/lib/libglib-1.3.so.*
|
|
%{prefix}/lib/libgthread-1.3.so.*
|
|
%{prefix}/lib/libgmodule-1.3.so.*
|
|
%{prefix}/lib/libgobject-1.3.so.*
|
|
|
|
%files devel
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/lib*.so
|
|
%{prefix}/lib/*a
|
|
%{prefix}/lib/glib
|
|
%{prefix}/include/*
|
|
%{prefix}/man/man1/
|
|
%{prefix}/share/aclocal/*
|
|
%{prefix}/bin/*
|