auto-import changelog data from seahorse-0.7.3-0.fdr.4.rh90.src.rpm
* Wed Oct 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.4 - Uncommented .la removal. * Sun Sep 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.3 - Grabbed new copy os source from upstream. - Fixed path on Source0, to allow direct download. - BuildReq desktop-file-utils. * Sun Sep 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.2 - Fixed file permission on source tarball. - Fixed Group. - Removed aesthetic comments. - Brought more in line with current spec template. * Sun Aug 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.1 - Fedorification. - Added path to Source0. - Added URL. - buildroot -> RPM_BUILD_ROOT. - BuildReq libgnomeui-devel, eel2-devel, gpgme03-devel. - BuildReq gettext. - post Req GConf2. - post/postun Req scrollkeeper. - .la/.a removal. - cosmetic changes. * Fri May 02 2003 Matthew Hall <matt@ecsc.co.uk> 0.7.3-1 - 0.7.3 Release * Wed Apr 23 2003 Matthew Hall <matt@ecsc.co.uk> 0.7.1-3 - Rebuilt against gpgme 0.3.15 * Sat Apr 12 2003 Matthew Hall <matt@ecsc.co.uk> 0.7.1-2 - RedHat 9 Rebuild * Sun Jan 26 2003 Matthew Hall <matt@ecsc.co.uk> - New Spec File
This commit is contained in:
parent
349ff5feda
commit
480e3ba9a6
@ -0,0 +1 @@
|
||||
seahorse-0.7.3.tar.gz
|
135
seahorse.spec
Normal file
135
seahorse.spec
Normal file
@ -0,0 +1,135 @@
|
||||
Name: seahorse
|
||||
Version: 0.7.3
|
||||
Release: 0.fdr.4.rh90
|
||||
Epoch: 0
|
||||
Summary: GNOME2 interface for gnupg
|
||||
|
||||
Group: User Interface/Desktops
|
||||
License: GPL
|
||||
URL: http://seahorse.sourceforge.net/
|
||||
Source: http://download.sourceforge.net/seahorse/seahorse-0.7.3.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: libgnomeui-devel
|
||||
BuildRequires: eel2-devel
|
||||
BuildRequires: gpgme03-devel
|
||||
BuildRequires: gettext
|
||||
BuildRequires: desktop-file-utils
|
||||
Requires(post): GConf2
|
||||
Requires(post,postun): scrollkeeper
|
||||
|
||||
%description
|
||||
Seahorse is a gnome2 interface for gnupg.
|
||||
It uses gpgme as the backend.
|
||||
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
|
||||
%install
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
|
||||
make install DESTDIR=${RPM_BUILD_ROOT}
|
||||
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
|
||||
%find_lang seahorse
|
||||
|
||||
rm -rf ${RPM_BUILD_ROOT}/var/scrollkeeper
|
||||
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/applications
|
||||
desktop-file-install --vendor fedora --delete-original \
|
||||
--dir ${RPM_BUILD_ROOT}%{_datadir}/applications \
|
||||
--add-category X-Fedora \
|
||||
--add-category Application \
|
||||
--add-category Utility \
|
||||
${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';'
|
||||
find ${RPM_BUILD_ROOT} -type f -name "*.a" -exec rm -f {} ';'
|
||||
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
|
||||
|
||||
%post
|
||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
||||
gconftool-2 \
|
||||
--makefile-install-rule \
|
||||
%{_sysconfdir}/gconf/schemas/%{name}.schemas > /dev/null || :
|
||||
scrollkeeper-update
|
||||
|
||||
|
||||
|
||||
%postun
|
||||
scrollkeeper-update
|
||||
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING NEWS README TODO
|
||||
%{_bindir}/*
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/fedora-%{name}.desktop
|
||||
%{_datadir}/omf/%{name}
|
||||
%{_datadir}/pixmaps/*
|
||||
%{_datadir}/gnome/help/%{name}
|
||||
%{_sysconfdir}/gconf/schemas/*
|
||||
%{_libdir}/bonobo/*.*
|
||||
%{_libdir}/bonobo/servers/Seahorse_PGP_File_Listener.server
|
||||
%{_datadir}/control-center-2.0/capplets/*.desktop
|
||||
%{_datadir}/mime-info/seahorse.keys
|
||||
%{_datadir}/mime-info/seahorse.mime
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Oct 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.4
|
||||
- Uncommented .la removal.
|
||||
|
||||
* Sun Sep 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.3
|
||||
- Grabbed new copy os source from upstream.
|
||||
- Fixed path on Source0, to allow direct download.
|
||||
- BuildReq desktop-file-utils.
|
||||
|
||||
* Sun Sep 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.2
|
||||
- Fixed file permission on source tarball.
|
||||
- Fixed Group.
|
||||
- Removed aesthetic comments.
|
||||
- Brought more in line with current spec template.
|
||||
|
||||
* Sun Aug 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> 0:0.7.3-0.fdr.1
|
||||
- Fedorification.
|
||||
- Added path to Source0.
|
||||
- Added URL.
|
||||
- buildroot -> RPM_BUILD_ROOT.
|
||||
- BuildReq libgnomeui-devel, eel2-devel, gpgme03-devel.
|
||||
- BuildReq gettext.
|
||||
- post Req GConf2.
|
||||
- post/postun Req scrollkeeper.
|
||||
- .la/.a removal.
|
||||
- cosmetic changes.
|
||||
|
||||
* Fri May 02 2003 Matthew Hall <matt@ecsc.co.uk> 0.7.3-1
|
||||
- 0.7.3 Release
|
||||
|
||||
* Wed Apr 23 2003 Matthew Hall <matt@ecsc.co.uk> 0.7.1-3
|
||||
- Rebuilt against gpgme 0.3.15
|
||||
|
||||
* Sat Apr 12 2003 Matthew Hall <matt@ecsc.co.uk> 0.7.1-2
|
||||
- RedHat 9 Rebuild
|
||||
|
||||
* Sun Jan 26 2003 Matthew Hall <matt@ecsc.co.uk>
|
||||
- New Spec File
|
||||
|
Loading…
Reference in New Issue
Block a user