]> git.pld-linux.org Git - packages/gd.git/blobdiff - gd.spec
- release 5 (for allow upgrade from RH 7).
[packages/gd.git] / gd.spec
diff --git a/gd.spec b/gd.spec
index e92234f40c0f92dad63a06e0d56b807c4555d7c4..1214f07d3998ef572e3dbc0231146aef52deb936 100644 (file)
--- a/gd.spec
+++ b/gd.spec
@@ -1,30 +1,37 @@
 Summary:       Library for PNG, JPEG creation
 Summary(pl):   Biblioteka do tworzenia grafiki w formacie PNG, JPEG
 Name:          gd
-Version:       1.8.2
-Release:       1
+Version:       1.8.3
+Release:       5
 License:       BSD-style
 Group:         Libraries
+Group(de):     Libraries
 Group(fr):     Librairies
 Group(pl):     Biblioteki
 Source0:       ftp://ftp.boutell.com/pub/boutell/gd/%{name}-%{version}.tar.gz
-Patch0:                gd-pld-patch
+Patch0:                %{name}-ac_am.patch
 URL:           http://www.boutell.com/gd/
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: libtool
 BuildRequires: zlib-devel
 BuildRequires: libpng-devel
 BuildRequires: freetype-devel
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%define shlibver %(echo %{version} | cut -f-2 -d.)
+
 %description
-gd library creates PNG, JPEG and WBMP images, not GIF images. This is a
-good thing. PNG is a more compact format, and full compression is available.
-JPEG works well with photographic images, and is still more compatible with
-the major Web browsers than even PNG is. WBMP is intended for wireless
-devices (not regular web browsers). Existing code will need modification to
-call or gdImageJpeg instead of gdImageGif.
+gd library creates PNG, JPEG and WBMP images, not GIF images. This is
+a good thing. PNG is a more compact format, and full compression is
+available. JPEG works well with photographic images, and is still more
+compatible with the major Web browsers than even PNG is. WBMP is
+intended for wireless devices (not regular web browsers). Existing
+code will need modification to call or gdImageJpeg instead of
+gdImageGif.
 
-This library allows you to easily create and manipulate PNG, JPEG image
-files from your C programs.
+This library allows you to easily create and manipulate PNG, JPEG
+image files from your C programs.
 
 %description -l pl
 Biblioteka pozwalaj±ca na proste tworzenie i manipulowanie plikami
@@ -34,8 +41,11 @@ graficznymi w formacie PNG.
 Summary:       Development part of the GD library
 Summary(pl):   Czê¶æ biblioteki GD przeznaczona dla developerów
 Group:         Development/Libraries
+Group(de):     Entwicklung/Libraries
 Group(fr):     Development/Librairies
 Group(pl):     Programowanie/Biblioteki
+Requires:      libpng-devel
+Requires:      zlib-devel
 Requires:      %{name} = %{version}
 
 %description devel
@@ -50,6 +60,7 @@ z biblioteki GD.
 Summary:       Static GD library
 Summary(pl):   Statyczna biblioteka GD
 Group:         Development/Libraries
+Group(de):     Entwicklung/Libraries
 Group(fr):     Development/Librairies
 Group(pl):     Programowanie/Biblioteki
 Requires:      %{name} = %{version}
@@ -65,34 +76,23 @@ Pakiet ten zawiera statyczn
 %patch0 -p1 
 
 %build
-CFLAGS="$RPM_OPT_FLAGS -I/usr/include/freetype"
-LDFLAGS="-s"
-export CFLAGS LDFLAGS
-gcc -shared -o libgd.so.%{version} -Wl,-soname=libgd.so.%{shlibver} \
-        `ar t libgd.a` -L/usr/X11R6/lib -lttf -ljpeg -lpng -lz -lm
-
+libtoolize --copy --force
+automake -a -c
+aclocal
+autoconf
+%configure
+%{__make}
 
 %install
+rm -rf $RPM_BUILD_ROOT
 
-
-[ "$RPM_BUILD_ROOT" != "/" ] && rm -fr $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT{%{_bindir},%{_includedir},%{_libdir}}
-make install \
-        INSTALL_BIN=$RPM_BUILD_ROOT%{_bindir} \
-        INSTALL_INCLUDE=$RPM_BUILD_ROOT%{_includedir} \
-        INSTALL_LIB=$RPM_BUILD_ROOT%{_libdir}
-
-install libgd.so.%{version} $RPM_BUILD_ROOT%{_libdir}/
-ln -s libgd.so.%{version} $RPM_BUILD_ROOT%{_libdir}/libgd.so
-
-#make DESTDIR="$RPM_BUILD_ROOT" install
-
-strip --strip-unneeded $RPM_BUILD_ROOT%{_libdir}/lib*.so.*.*
+%{__make} install \
+        DESTDIR=$RPM_BUILD_ROOT
 
 gzip -9nf readme.txt index.html 
 
 %clean
-rm -fr $RPM_BUILD_ROOT
+rm -rf $RPM_BUILD_ROOT
 
 %post   -p /sbin/ldconfig
 %postun -p /sbin/ldconfig
@@ -107,6 +107,7 @@ rm -fr $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc index.html.gz 
 %attr(755,root,root) %{_libdir}/*.so
+%attr(755,root,root) %{_libdir}/*.la
 %{_includedir}/*
 
 %files static
This page took 0.127321 seconds and 4 git commands to generate.