OBS User unknown 2007-03-01 19:40:33 +00:00 committed by Git OBS Bridge
parent 71047212fc
commit 67025a3f61
2 changed files with 24 additions and 18 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Mar 1 17:25:19 CET 2007 - sbrabec@suse.cz
- Fixed devel dependencies.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 27 23:13:40 CET 2007 - dmueller@suse.de Tue Feb 27 23:13:40 CET 2007 - dmueller@suse.de

View File

@ -17,7 +17,7 @@ License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Summary: An EXIF Tag Parsing Library for Digital Cameras Summary: An EXIF Tag Parsing Library for Digital Cameras
Version: 0.6.14 Version: 0.6.14
Release: 25 Release: 26
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: %{name}-%{version}.tar.bz2 Source0: %{name}-%{version}.tar.bz2
Patch0: libexif-fixpkgconfig.patch Patch0: libexif-fixpkgconfig.patch
@ -36,6 +36,7 @@ Authors:
%package devel %package devel
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Summary: An EXIF Tag Parsing Library for Digital Cameras (Development files) Summary: An EXIF Tag Parsing Library for Digital Cameras (Development files)
Requires: %{name} = %{version} glibc-devel
%description devel %description devel
This library is used to parse EXIF information from JPEGs created by This library is used to parse EXIF information from JPEGs created by
@ -53,34 +54,34 @@ Authors:
%patch0 -p1 %patch0 -p1
%build %build
export CFLAGS="$RPM_OPT_FLAGS -g -fstack-protector" export CFLAGS="$RPM_OPT_FLAGS -fstack-protector"
./configure \ %configure\
--with-doc-dir=%_defaultdocdir/%name/ \ --disable-static\
--prefix=/usr \ --with-doc-dir=%{_docdir}/%{name}
--libdir=%{_libdir} \ make %{?jobs:-j%jobs}
--disable-static
make
%install %install
make DESTDIR=${RPM_BUILD_ROOT}/ install %makeinstall
%find_lang %{name}-12
%clean %clean
rm -rf ${RPM_BUILD_ROOT} rm -rf $RPM_BUILD_ROOT
%files %files -f %{name}-12.lang
%defattr(-,root,root) %defattr(-,root,root)
%{_libdir}/lib*.so.* %{_libdir}/*.so.*
/usr/share/locale/*/LC_MESSAGES/libexif*.mo
%files devel %files devel
%defattr(-,root,root) %defattr(-,root,root)
%doc %_defaultdocdir/%name %doc %{_docdir}/%{name}
%{_libdir}/lib*.so %{_libdir}/*.so
%{_libdir}/lib*.la %{_libdir}/*.la
/usr/include/* %{_libdir}/pkgconfig/*.pc
%{_libdir}/pkgconfig/* %{_includedir}/*
%changelog %changelog
* Thu Mar 01 2007 - sbrabec@suse.cz
- Fixed devel dependencies.
* Tue Feb 27 2007 - dmueller@suse.de * Tue Feb 27 2007 - dmueller@suse.de
- split off devel package - split off devel package
* Tue Oct 17 2006 - meissner@suse.de * Tue Oct 17 2006 - meissner@suse.de