mirror of https://github.com/GNOME/gimp.git
291 lines
9.5 KiB
Plaintext
291 lines
9.5 KiB
Plaintext
%define subver @GIMP_MAJOR_VERSION@.@GIMP_MINOR_VERSION@
|
||
%define microver @GIMP_MICRO_VERSION@
|
||
%define libage @LT_CURRENT_MINUS_AGE@.@LT_AGE@.@LT_REVISION@
|
||
%define libver @LT_CURRENT_MINUS_AGE@
|
||
%define ver @VERSION@
|
||
%define prefix /usr
|
||
%define sysconfdir /etc
|
||
%define desktopdir /usr/share
|
||
|
||
Summary: The GNU Image Manipulation Program
|
||
Name: gimp
|
||
Epoch: 2
|
||
Version: %{ver}
|
||
Release: 1
|
||
Copyright: GPL, LGPL
|
||
Group: Applications/Graphics
|
||
URL: http://www.gimp.org/
|
||
BuildRoot: %{_tmppath}/%{name}-%{ver}-root
|
||
Docdir: %{prefix}/doc
|
||
Prefix: %{prefix}
|
||
Obsoletes: gimp-data-min
|
||
Obsoletes: gimp-libgimp
|
||
Requires: gtk2 >= @GTK_REQUIRED_VERSION@
|
||
Requires: libart_lgpl >= 2.0
|
||
Requires: fontconfig >= @FONTCONFIG_REQUIRED_VERSION@
|
||
Requires: gimp-print >= @GIMPPRINT_REQUIRED_VERSION@
|
||
Conflicts: gimp-print >= @GIMPPRINT_TOONEW_VERSION@
|
||
Requires: gtkhtml2 >= @GTKHTML2_REQUIRED_VERSION@
|
||
Requires: librsvg2 >= @RSVG_REQUIRED_VERSION@
|
||
Requires: lcms
|
||
Requires: libexif
|
||
BuildRequires: gtk2-devel >= @GTK_REQUIRED_VERSION@
|
||
BuildRequires: fontconfig-devel >= @FONTCONFIG_REQUIRED_VERSION@
|
||
BuildRequires: libart_lgpl-devel >= 2.0
|
||
BuildRequires: gimp-print-devel >= @GIMPPRINT_REQUIRED_VERSION@
|
||
BuildRequires: librsvg2-devel >= 2.0
|
||
BuildRequires: gtkhtml2-devel >= @GTKHTML2_REQUIRED_VERSION@
|
||
Source: ftp://ftp.gimp.org/pub/gimp/v%{subver}/%{name}-%{ver}.tar.bz2
|
||
|
||
%description
|
||
The GIMP (GNU Image Manipulation Program) is a powerful image
|
||
composition and editing program, which can be extremely useful for
|
||
creating logos and other graphics for Web pages. The GIMP has many of
|
||
the tools and filters you would expect to find in similar commercial
|
||
offerings, and some interesting extras as well. The GIMP provides a
|
||
large image manipulation toolbox, including channel operations and
|
||
layers, effects, sub-pixel imaging and anti-aliasing, and conversions,
|
||
all with multi-level undo.
|
||
|
||
The GIMP includes a scripting facility, but many of the included
|
||
scripts rely on fonts that we cannot distribute. The GIMP FTP site
|
||
has a package of fonts that you can install by yourself, which
|
||
includes all the fonts needed to run the included scripts. Some of
|
||
the fonts have unusual licensing requirements; all the licenses are
|
||
documented in the package. Get
|
||
ftp://ftp.gimp.org/pub/gimp/fonts/freefonts-0.10.tar.gz and
|
||
ftp://ftp.gimp.org/pub/gimp/fonts/sharefonts-0.10.tar.gz if you are so
|
||
inclined. Alternatively, choose fonts which exist on your system
|
||
before running the scripts.
|
||
|
||
Install the GIMP if you need a powerful image manipulation
|
||
program. You may also want to install other GIMP packages:
|
||
gimp-libgimp if you're going to use any GIMP plug-ins and
|
||
gimp-data-extras, which includes various extra files for the GIMP.
|
||
|
||
%package devel
|
||
Summary: GIMP plugin and extension development kit
|
||
Group: Applications/Graphics
|
||
Requires: gtk2-devel
|
||
%description devel
|
||
The gimp-devel package contains the static libraries and header files
|
||
for writing GNU Image Manipulation Program (GIMP) plug-ins and
|
||
extensions.
|
||
|
||
Install gimp-devel if you're going to create plug-ins and/or
|
||
extensions for the GIMP. You'll also need to install gimp-limpgimp
|
||
and gimp, and you may want to install gimp-data-extras.
|
||
|
||
%package docs
|
||
Summary: GIMP Documentation
|
||
Group: Applications/Graphics
|
||
%description docs
|
||
GIMP documentation
|
||
|
||
%prep
|
||
%setup -q
|
||
|
||
%build
|
||
%ifarch alpha
|
||
MYARCH_FLAGS="--host=alpha-redhat-linux"
|
||
%endif
|
||
|
||
if [ ! -f configure ]; then
|
||
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --quiet $MYARCH_FLAGS --prefix=%{prefix}
|
||
else
|
||
CFLAGS="$RPM_OPT_FLAGS" %configure --prefix=%{prefix} --quiet
|
||
fi
|
||
make
|
||
|
||
%install
|
||
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
||
mkdir -p $RPM_BUILD_ROOT/%{prefix}/info $RPM_BUILD_ROOT/%{prefix}/include \
|
||
$RPM_BUILD_ROOT/%{prefix}/lib $RPM_BUILD_ROOT/%{prefix}/bin \
|
||
$RPM_BUILD_ROOT/%{desktopdir}/applications \
|
||
$RPM_BUILD_ROOT/%{desktopdir}/application-registry \
|
||
$RPM_BUILD_ROOT/%{desktopdir}/mime-info
|
||
make destdir=$RPM_BUILD_ROOT DESTDIR=$RPM_BUILD_ROOT install
|
||
|
||
#
|
||
# Plugins and modules change often (grab the executeable ones)
|
||
#
|
||
echo "%defattr (0555, bin, bin)" > gimp-plugin-files
|
||
find $RPM_BUILD_ROOT/%{prefix}/lib/gimp/%{subver} -type f -exec file {} \; | cut -d':' -f 1 | sed "s@^$RPM_BUILD_ROOT@@g" >>gimp-plugin-files
|
||
|
||
#
|
||
# Tips
|
||
#
|
||
echo "%defattr (444, bin, bin, 555)" >gimp-tips-files
|
||
|
||
#
|
||
# Build the master filelists generated from the above mess.
|
||
#
|
||
cat gimp-plugin-files gimp-tips-files > gimp.files
|
||
|
||
%clean
|
||
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
||
|
||
%post -p /sbin/ldconfig
|
||
|
||
%postun -p /sbin/ldconfig
|
||
|
||
%files -f gimp.files
|
||
%attr (0555, bin, man) %doc AUTHORS COPYING ChangeLog MAINTAINERS NEWS README
|
||
%attr (0555, bin, man) %doc docs/*.txt README.i18n README.win32
|
||
%defattr (0444, bin, bin, 0555)
|
||
%dir %{prefix}/share/gimp/%{subver}
|
||
%dir %{prefix}/share/gimp/%{subver}/tips
|
||
%dir %{prefix}/lib/gimp/%{subver}
|
||
%dir %{prefix}/lib/gimp/%{subver}/modules
|
||
%dir %{prefix}/lib/gimp/%{subver}/plug-ins
|
||
|
||
%{desktopdir}/applications/gimp-%{subver}.desktop
|
||
%{desktopdir}/application-registry/gimp-%{subver}.applications
|
||
%{desktopdir}/mime-info/gimp-%{subver}.keys
|
||
|
||
%{prefix}/share/gimp/%{subver}/brushes/
|
||
%{prefix}/share/gimp/%{subver}/fractalexplorer/
|
||
%{prefix}/share/gimp/%{subver}/gfig/
|
||
%{prefix}/share/gimp/%{subver}/gflare/
|
||
%{prefix}/share/gimp/%{subver}/gimpressionist/
|
||
%{prefix}/share/gimp/%{subver}/gradients/
|
||
%{prefix}/share/gimp/%{subver}/palettes/
|
||
%{prefix}/share/gimp/%{subver}/patterns/
|
||
%{prefix}/share/gimp/%{subver}/scripts/
|
||
|
||
%{sysconfdir}/gimp/%{subver}/gimprc
|
||
%{sysconfdir}/gimp/%{subver}/gtkrc
|
||
%{sysconfdir}/gimp/%{subver}/ps-menurc
|
||
%{sysconfdir}/gimp/%{subver}/sessionrc
|
||
%{sysconfdir}/gimp/%{subver}/templaterc
|
||
%{sysconfdir}/gimp/%{subver}/unitrc
|
||
|
||
%defattr (0555, bin, bin)
|
||
|
||
%{prefix}/lib/libgimp-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimp-%{subver}.so.%{libver}
|
||
%{prefix}/lib/libgimpui-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpui-%{subver}.so.%{libver}
|
||
|
||
%{prefix}/lib/libgimpbase-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpbase-%{subver}.so.%{libver}
|
||
%{prefix}/lib/libgimpcolor-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpcolor-%{subver}.so.%{libver}
|
||
%{prefix}/lib/libgimpmath-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpmath-%{subver}.so.%{libver}
|
||
%{prefix}/lib/libgimpmodule-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpmodule-%{subver}.so.%{libver}
|
||
%{prefix}/lib/libgimpthumb-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpthumb-%{subver}.so.%{libver}
|
||
%{prefix}/lib/libgimpwidgets-%{subver}.so.%{libage}
|
||
%{prefix}/lib/libgimpwidgets-%{subver}.so.%{libver}
|
||
|
||
%{prefix}/share/gimp/%{subver}/images
|
||
%{prefix}/share/gimp/%{subver}/misc
|
||
%{prefix}/share/gimp/%{subver}/themes
|
||
%{prefix}/share/gimp/%{subver}/tips/gimp-tips.xml
|
||
|
||
%{prefix}/share/locale/
|
||
|
||
%{prefix}/bin/gimp-%{subver}
|
||
%{prefix}/bin/gimp-remote-%{subver}
|
||
|
||
%defattr (0444, bin, man)
|
||
|
||
%{prefix}/share/man/man1/*
|
||
%{prefix}/share/man/man5/*
|
||
|
||
%files devel
|
||
%defattr (0555, bin, bin, 0555)
|
||
%{prefix}/bin/gimptool-2.0
|
||
%{prefix}/lib/*.so
|
||
%{prefix}/lib/*.la
|
||
%dir %{prefix}/lib/gimp/%{subver}
|
||
%dir %{prefix}/lib/gimp/%{subver}/modules
|
||
%{prefix}/lib/gimp/%{subver}/modules/*.la
|
||
|
||
%defattr (0444, root, root, 0555)
|
||
%{prefix}/lib/pkgconfig/gimp-2.0.pc
|
||
%{prefix}/lib/pkgconfig/gimpui-2.0.pc
|
||
%{prefix}/lib/pkgconfig/gimpthumb-2.0.pc
|
||
|
||
%dir %{prefix}/include/gimp-%{subver}/libgimpbase
|
||
%{prefix}/include/gimp-%{subver}/libgimpbase/*
|
||
|
||
%dir %{prefix}/include/gimp-%{subver}/libgimpmath
|
||
%{prefix}/include/gimp-%{subver}/libgimpmath/*
|
||
|
||
%dir %{prefix}/include/gimp-%{subver}/libgimpmodule
|
||
%{prefix}/include/gimp-%{subver}/libgimpmodule/*
|
||
|
||
%dir %{prefix}/include/gimp-%{subver}/libgimpthumb
|
||
%{prefix}/include/gimp-%{subver}/libgimpthumb/*
|
||
|
||
%dir %{prefix}/include/gimp-%{subver}/libgimpwidgets
|
||
%{prefix}/include/gimp-%{subver}/libgimpwidgets/*
|
||
|
||
%dir %{prefix}/include/gimp-%{subver}/libgimpcolor
|
||
%{prefix}/include/gimp-%{subver}/libgimpcolor/*
|
||
|
||
%{prefix}/share/aclocal/gimp-2.0.m4
|
||
|
||
%{prefix}/include/gimp-%{subver}/libgimp
|
||
|
||
%files docs
|
||
%{prefix}/share/gtk-doc/html/libgimp
|
||
%{prefix}/share/gtk-doc/html/libgimpbase
|
||
%{prefix}/share/gtk-doc/html/libgimpcolor
|
||
%{prefix}/share/gtk-doc/html/libgimpmath
|
||
%{prefix}/share/gtk-doc/html/libgimpmodule
|
||
%{prefix}/share/gtk-doc/html/libgimpthumb
|
||
%{prefix}/share/gtk-doc/html/libgimpwidgets
|
||
|
||
%changelog
|
||
* Sun Mar 7 2004 Sven Neumann <sven@gimp.org>
|
||
- Removed references to static libraries
|
||
|
||
* Sat Jan 10 2004 Ville P<>tsi <drc@gimp.org>
|
||
- Changed epoch to 2
|
||
|
||
* Thu Jan 08 2004 Sven Neumann <sven@gimp.org>
|
||
- gimptool and pkg-config files changed names
|
||
|
||
* Wed Oct 08 2003 Ville P<>tsi <drc@gimp.org>
|
||
- Enabled debug packages again.
|
||
|
||
* Mon Sep 08 2003 Ville P<>tsi <drc@gimp.org>
|
||
- Remove *gck* since that is no longer installed by the source
|
||
|
||
* Wed Sep 03 2003 Ville P<>tsi <drc@gimp.org>
|
||
- Move /etc/gimp/* from the devel package to the main one.
|
||
|
||
* Tue Aug 12 2003 Ville P<>tsi <drc@gimp.org>
|
||
- Remove stripping by defining DONT_STRIP=1 in the install stage
|
||
- Disable building of separate debug packages
|
||
|
||
* Sun Aug 10 2003 Ville P<>tsi <drc@gimp.org>
|
||
- Bring gtk2 package names up to date
|
||
- Change PREFIX to DESTDIR
|
||
- Change files to match what 1.3 uses.
|
||
- Remove lots of obsolete (?) macros
|
||
|
||
* Fri Apr 14 2000 Matt Wilson <msw@redhat.com>
|
||
- include subdirs in the help find
|
||
- remove gimp-help-files generation
|
||
- both gimp and gimp-perl own prefix/lib/gimp/1.1/plug-ins
|
||
- both gimp and gimp-devel own prefix/lib/gimp/1.1 and
|
||
prefix/lib/gimp/1.1/modules
|
||
|
||
* Thu Apr 13 2000 Matt Wilson <msw@redhat.com>
|
||
- 1.1.19
|
||
- get all .mo files
|
||
|
||
* Wed Jan 19 2000 Gregory McLean <gregm@comstar.net>
|
||
- Version 1.1.15
|
||
|
||
* Wed Dec 22 1999 Gregory McLean <gregm@comstar.net>
|
||
- Version 1.1.14
|
||
- Added some auto %files section generation scriptlets
|
||
|
||
|