mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
bb26890024
Fri Jul 14 12:22:49 2000 Owen Taylor <otaylor@redhat.com> * configure.in Makefile.am gtk-config.m4 gtk.m4: Move gtk-config to gtk-config-2.0 move gtk_.m4 to gtk-2.0.m4 * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am gdk/Makefile.am demos/Makefile.am: Change library names to libgtk-1.3.la, etc, so that we can distinguish gtk-1.2 and gtk-2.0 on the linkline. * Makefile.am gtk/Makefile.am gdk-pixbuf/Makefile.am gdk/Makefile.am gdk/x11/Makfile.am Move include files into /usr/include/gtk-2.0, /usr/lib/gtk-2.0/include/ * autogen.sh acconfig.h configure.in gtk/gtkmain.c gtk/gtkintl.h: Change package for gettext from gtk+ to gtk20. Put hack in autogen.sh to modify po/Makefile.in.in after gettextize to make this possible. * gtk+.spec: Some updates, not tested. * gdk-pixbuf/Makefile.am: Move loaders into $(libdir)/gtk-2.0/$(GTK_VERSION)/loaders. * gtk/Makefile.am gtk/gtkrc.c: Move RC file locations $(sysconfdir)/gtk-2.0 ~/.gtkrc-2.0; theme subdir to THEMENAME/gtk-2.0/. Move engine directory to $(libdir)/gtk-2.0/$(GTK_VERSION)/engines.
158 lines
3.5 KiB
RPMSpec
158 lines
3.5 KiB
RPMSpec
# Note that this is NOT a relocatable package
|
|
%define ver @VERSION@
|
|
%define RELEASE 1
|
|
%define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
|
|
%define prefix /usr
|
|
|
|
Summary: The Gimp Toolkit
|
|
Name: gtk+
|
|
Version: %ver
|
|
Release: %rel
|
|
Copyright: LGPL
|
|
Group: X11/Libraries
|
|
Source: ftp://ftp.gimp.org/pub/gtk/v1.1/gtk+-%{ver}.tar.gz
|
|
BuildRoot: /var/tmp/gtk-%{PACKAGE_VERSION}-root
|
|
Obsoletes: gtk
|
|
Packager: Christopher Blizzard <blizzard@redhat.com>
|
|
URL: http://www.gtk.org
|
|
Requires: glib
|
|
Docdir: %{prefix}/doc
|
|
|
|
%description
|
|
The X libraries originally written for the GIMP, which are now used by
|
|
several other programs as well.
|
|
|
|
%package devel
|
|
Summary: GIMP Toolkit and GIMP Drawing Kit
|
|
Group: X11/Libraries
|
|
Requires: gtk+
|
|
Obsoletes: gtk-devel
|
|
|
|
%description devel
|
|
Static libraries and header files for the GIMP's X libraries, which are
|
|
available as public libraries. GLIB includes generally useful data
|
|
structures, GDK is a drawing toolkit which provides a thin layer over
|
|
Xlib to help automate things like dealing with different color depths,
|
|
and GTK is a widget set for creating user interfaces.
|
|
|
|
%changelog
|
|
|
|
* Tue Jun 1 1999 Jose Mercado <jmercado@mit.edu>
|
|
- Corrected some typos in files section.
|
|
|
|
* Sun Feb 21 1999 Michael Fulbright <drmike@redhat.com>
|
|
- updated spec file
|
|
|
|
* Sun Oct 25 1998 Shawn T. Amundson <amundson@gtk.org>
|
|
|
|
- Fixed Source: to point to v1.1
|
|
|
|
* Tue Aug 04 1998 Michael Fulbright <msf@redhat.com>
|
|
|
|
- change %postun to %preun
|
|
|
|
* Mon Jun 27 1998 Shawn T. Amundson
|
|
|
|
- Changed version to 1.1.0
|
|
|
|
* Thu Jun 11 1998 Dick Porter <dick@cymru.net>
|
|
|
|
- Removed glib, since it is its own module now
|
|
|
|
* Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
|
|
|
|
- Split out glib package
|
|
|
|
* Tue Apr 8 1998 Shawn T. Amundson <amundson@gtk.org>
|
|
|
|
- Changed version to 1.0.0
|
|
|
|
* Tue Apr 7 1998 Owen Taylor <otaylor@gtk.org>
|
|
|
|
- Changed version to 0.99.10
|
|
|
|
* Thu Mar 19 1998 Shawn T. Amundson <amundson@gimp.org>
|
|
|
|
- Changed version to 0.99.9
|
|
- Changed gtk home page to www.gtk.org
|
|
|
|
* Thu Mar 19 1998 Shawn T. Amundson <amundson@gimp.org>
|
|
|
|
- Changed version to 0.99.8
|
|
|
|
* Sun Mar 15 1998 Marc Ewing <marc@redhat.com>
|
|
|
|
- Added aclocal and bin stuff to file list.
|
|
|
|
- Added -k to the SMP make line.
|
|
|
|
- Added lib/glib to file list.
|
|
|
|
* Fri Mar 14 1998 Shawn T. Amundson <amundson@gimp.org>
|
|
|
|
- Changed version to 0.99.7
|
|
|
|
* Fri Mar 14 1998 Shawn T. Amundson <amundson@gimp.org>
|
|
|
|
- Updated ftp url and changed version to 0.99.6
|
|
|
|
* Thu Mar 12 1998 Marc Ewing <marc@redhat.com>
|
|
|
|
- Reworked to integrate into gtk+ source tree
|
|
|
|
- Truncated ChangeLog. Previous Authors:
|
|
Trond Eivind Glomsrod <teg@pvv.ntnu.no>
|
|
Michael K. Johnson <johnsonm@redhat.com>
|
|
Otto Hammersmith <otto@redhat.com>
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
# Needed for snapshot releases.
|
|
if [ ! -f configure ]; then
|
|
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix
|
|
else
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
|
|
fi
|
|
|
|
if [ "$SMP" != "" ]; then
|
|
(make "MAKE=make -k -j $SMP"; exit 0)
|
|
make
|
|
else
|
|
make
|
|
fi
|
|
|
|
%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 TODO
|
|
%{prefix}/lib/libgtk-1.3.so.*
|
|
%{prefix}/lib/libgdk-1.3.so.*
|
|
%{prefix}/share/themes/Default
|
|
%{prefix}/share/locale/*/*/*
|
|
|
|
|
|
%files devel
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/lib*.so
|
|
%{prefix}/lib/*a
|
|
%{prefix}/include/*
|
|
%{prefix}/include/lib/gtk+-2.0/include/*
|
|
%{prefix}/man/man1/*
|
|
%{prefix}/share/aclocal/*
|
|
%{prefix}/bin/*
|