add packaging
authorAnas Nashif <anas.nashif@intel.com>
Thu, 8 Nov 2012 00:05:58 +0000 (16:05 -0800)
committerAnas Nashif <anas.nashif@intel.com>
Thu, 8 Nov 2012 00:05:58 +0000 (16:05 -0800)
packaging/giflib.spec [new file with mode: 0644]

diff --git a/packaging/giflib.spec b/packaging/giflib.spec
new file mode 100644 (file)
index 0000000..22d5d1c
--- /dev/null
@@ -0,0 +1,89 @@
+#sbs-git:slp/unmodified/giflib giflib 4.1.6 61596465721e29cdfae7e6237b2a148e04006a6c
+Name:           giflib
+Version:        4.1.6
+Release:        9
+License:        MIT
+Summary:        Library for manipulating GIF format image files
+Url:            http://sourceforge.net/projects/giflib/
+Group:          System/Libraries
+Source0:        http://downloads.sourceforge.net/giflib/%{name}-%{version}.tar.gz
+BuildRequires:  pkgconfig(ice)
+BuildRequires:  pkgconfig(sm)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xv)
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+
+Obsoletes:      libungif <= %{version}
+Provides:       libungif <= %{version}
+
+%description
+The giflib package contains a shared library of functions for
+loading and saving GIF format image files.  It is API and ABI compatible
+with libungif, the library which supported uncompressed GIFs while the
+Unisys LZW patent was in effect.
+
+Install the giflib package if you need to write programs that use GIF files.
+You should also install the giflib-utils package if you need some simple
+utilities to manipulate GIFs.
+
+%package devel
+Summary:        Development tools for programs which will use the libungif library
+Group:          Development/Libraries
+Requires:       %{name} = %{version}
+Provides:       libungif-devel <= %{version}
+Obsoletes:      libungif-devel <= %{version}
+
+%description devel
+This package contains the static libraries, header files and
+documentation necessary for development of programs that will use the
+giflib library to load and save GIF format image files.
+
+You should install this package if you need to develop programs which
+will use giflib library functions.  You'll also need to install the
+giflib package.
+
+%package utils
+Summary:        Programs for manipulating GIF format image files
+Group:          Applications/Multimedia
+Requires:       %{name} = %{version}
+Obsoletes:      libungif-progs <= %{version}
+
+%description utils
+The giflib-utils package contains various programs for manipulating
+GIF format image files.
+
+Install this package if you need to manipulate GIF format image files.
+You'll also need to install the giflib package.
+
+%prep
+%setup -q
+
+%build
+%configure
+make %{?_smp_mflags} all
+
+MAJOR=`echo '%{version}' | sed 's/\([0-9]\+\)\..*/\1/'`
+gcc %{optflags} -shared -Wl,-soname,libungif.so.$MAJOR -Llib/.libs -lgif -o libungif.so.%{version}
+
+%install
+
+%make_install
+
+install -m 0755 -p libungif.so.%{version} %{buildroot}%{_libdir}
+ln -sf libungif.so.%{version} %{buildroot}%{_libdir}/libungif.so.4
+ln -sf libungif.so.4 %{buildroot}%{_libdir}/libungif.so
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%{_libdir}/lib*.so.*
+
+%files devel
+%{_libdir}/lib*.so
+%{_includedir}/*.h
+
+%files utils
+%{_bindir}/*