This commit is contained in:
parent
c534d9e655
commit
2528e8b0e4
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 9 20:00:00 CEST 2007 - maw@suse.de
|
||||||
|
|
||||||
|
- I lied in the last changelog entry and didn't really change
|
||||||
|
the calls to ldconfig
|
||||||
|
- But I am changing them this time
|
||||||
|
- Also, rename rpmlintrc to gnucash-rpmlintrc.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 8 00:45:45 CEST 2007 - maw@suse.de
|
||||||
|
|
||||||
|
- Split off a -lang subpackage
|
||||||
|
- s#%run_ldconfig#/sbin/ldconfig/ in %post and %postun.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 27 11:17:42 CEST 2007 - sbrabec@suse.cz
|
Fri Jul 27 11:17:42 CEST 2007 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
30
gnucash.spec
30
gnucash.spec
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
Name: gnucash
|
Name: gnucash
|
||||||
Version: 2.2.0
|
Version: 2.2.0
|
||||||
Release: 1
|
Release: 4
|
||||||
URL: http://www.gnucash.org/
|
URL: http://www.gnucash.org/
|
||||||
Group: Productivity/Office/Finance
|
Group: Productivity/Office/Finance
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Summary: Personal Finance Manager
|
Summary: Personal Finance Manager
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Source1: rpmlintrc
|
Source1: %{name}-rpmlintrc
|
||||||
Patch: gnucash-desktop.patch
|
Patch: gnucash-desktop.patch
|
||||||
Patch1: gnucash-address-boolean.patch
|
Patch1: gnucash-address-boolean.patch
|
||||||
Requires: guile slib
|
Requires: guile slib
|
||||||
@ -32,6 +32,7 @@ Recommends: gnucash-docs
|
|||||||
%endif
|
%endif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
|
Requires: %{name}-lang = %{version}
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
|
|
||||||
%gconf_schemas_prereq
|
%gconf_schemas_prereq
|
||||||
@ -39,10 +40,10 @@ Autoreqprov: on
|
|||||||
%description
|
%description
|
||||||
GnuCash is a personal finance manager. A check book-like register GUI
|
GnuCash is a personal finance manager. A check book-like register GUI
|
||||||
allows you to enter and track bank accounts, stocks, income, and even
|
allows you to enter and track bank accounts, stocks, income, and even
|
||||||
currency trades. A full set of reports allows you to see the state of
|
currency trades. A full set of reports allows you to see the state
|
||||||
your finances. The interface is designed to be simple and easy to use,
|
ofyour finances. The interface is designed to be simple and easy to
|
||||||
but is backed with double-entry accounting principles to ensure
|
use, but is backed with double-entry accounting principles to
|
||||||
balanced books.
|
ensurebalanced books.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -407,6 +408,7 @@ Authors:
|
|||||||
Shimpei Yamashita <shimpei@gol.com>
|
Shimpei Yamashita <shimpei@gol.com>
|
||||||
Alex Zepeda <jazepeda@pacbell.net>
|
Alex Zepeda <jazepeda@pacbell.net>
|
||||||
|
|
||||||
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch
|
%patch
|
||||||
@ -440,7 +442,7 @@ rm $RPM_BUILD_ROOT%{_docdir}/%{name}/INSTALL
|
|||||||
rm $RPM_BUILD_ROOT%{_infodir}/dir
|
rm $RPM_BUILD_ROOT%{_infodir}/dir
|
||||||
%find_lang gnucash
|
%find_lang gnucash
|
||||||
%find_gconf_schemas
|
%find_gconf_schemas
|
||||||
cat %{name}.lang %{name}.schemas_list >%{name}.lst
|
cat %{name}.schemas_list >%{name}.lst
|
||||||
|
|
||||||
%fdupes $RPM_BUILD_ROOT%{_datadir}
|
%fdupes $RPM_BUILD_ROOT%{_datadir}
|
||||||
|
|
||||||
@ -450,7 +452,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%pre -f %{name}.schemas_pre
|
%pre -f %{name}.schemas_pre
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%run_ldconfig
|
/sbin/ldconfig
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/gnucash-design.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/gnucash-design.info.gz
|
||||||
|
|
||||||
%posttrans -f %{name}.schemas_posttrans
|
%posttrans -f %{name}.schemas_posttrans
|
||||||
@ -458,7 +460,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%preun -f %{name}.schemas_preun
|
%preun -f %{name}.schemas_preun
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%run_ldconfig
|
/sbin/ldconfig
|
||||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/gnucash-design.info.gz
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/gnucash-design.info.gz
|
||||||
|
|
||||||
%files -f %{name}.lst
|
%files -f %{name}.lst
|
||||||
@ -485,11 +487,21 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%dir %{_sysconfdir}/gnucash
|
%dir %{_sysconfdir}/gnucash
|
||||||
%config %{_sysconfdir}/gnucash/config
|
%config %{_sysconfdir}/gnucash/config
|
||||||
|
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr (-, root, root)
|
%defattr (-, root, root)
|
||||||
%{_includedir}/gnucash
|
%{_includedir}/gnucash
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 09 2007 - maw@suse.de
|
||||||
|
- I lied in the last changelog entry and didn't really change
|
||||||
|
the calls to ldconfig
|
||||||
|
- But I am changing them this time
|
||||||
|
- Also, rename rpmlintrc to gnucash-rpmlintrc.
|
||||||
|
* Wed Aug 08 2007 - maw@suse.de
|
||||||
|
- Split off a -lang subpackage
|
||||||
|
- s#%%run_ldconfig#/sbin/ldconfig/ in %%post and %%postun.
|
||||||
* Fri Jul 27 2007 - sbrabec@suse.cz
|
* Fri Jul 27 2007 - sbrabec@suse.cz
|
||||||
- Updated to version 2.2.0:
|
- Updated to version 2.2.0:
|
||||||
* DATA FILE NOTICE If you are using Scheduled Transactions,
|
* DATA FILE NOTICE If you are using Scheduled Transactions,
|
||||||
|
Loading…
Reference in New Issue
Block a user