2017-04-27 12:35:46 +00:00
|
|
|
#
|
|
|
|
# spec file for package 4pane
|
|
|
|
#
|
2022-08-25 07:21:42 +00:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2017-04-27 12:35:46 +00:00
|
|
|
# Copyright (c) 2016 Packman Team <packman@links2linux.de>
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-10-17 12:35:46 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2017-04-27 12:35:46 +00:00
|
|
|
#
|
|
|
|
|
2019-10-17 12:35:46 +00:00
|
|
|
|
2017-04-27 12:35:46 +00:00
|
|
|
Name: 4pane
|
2022-11-19 21:36:32 +00:00
|
|
|
Version: 8.0
|
2017-04-27 12:35:46 +00:00
|
|
|
Release: 0
|
2017-04-28 17:33:21 +00:00
|
|
|
Summary: A multi-pane detailed-list file manager
|
2019-10-17 12:35:46 +00:00
|
|
|
License: GPL-3.0-only
|
2020-03-28 16:46:35 +00:00
|
|
|
URL: http://www.4pane.co.uk/
|
2017-04-27 12:35:46 +00:00
|
|
|
Source0: https://sourceforge.net/projects/fourpane/files/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: ImageMagick
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: gcc-c++
|
2020-10-07 18:07:34 +00:00
|
|
|
BuildRequires: wxWidgets-devel >= 3.0
|
2020-10-07 16:45:05 +00:00
|
|
|
BuildRequires: pkgconfig(liblzma)
|
2017-04-27 12:35:46 +00:00
|
|
|
|
|
|
|
%description
|
2017-04-28 17:33:21 +00:00
|
|
|
4Pane is a multi-pane detailed-list file manager.
|
|
|
|
It favors speed over visual effects.
|
2017-04-27 12:35:46 +00:00
|
|
|
In addition to standard file manager features, it offers multiple undo and redo
|
2017-04-28 17:33:21 +00:00
|
|
|
of most operations (including deletions), archive management including "virtual
|
|
|
|
browsing" inside archives, multiple renaming/duplication of files, a terminal
|
2017-04-27 12:35:46 +00:00
|
|
|
emulator and user-defined tools.
|
|
|
|
|
Accepting request 559884 from home:posophe:branches:X11:Utilities
- Update to version 5.0
+ There is a simpler 'Find' dialog for everyday use.
Just as the QuickGrep dialog is good enough for most greps, a
simple one-page QuickFind that sets just the path, pattern and
search-type will be sufficient for most searches.
+ When large files are being moved or pasted, their progress is now
displayed in the statusbar.
+ It is now possible to make a particular fileview order its files
in a decimal-aware way. This is helpful in the case of files with
names like foo1.txt, foo2.txt, foo11.txt, foo12.txt, which normally
sort as 1, 11, 12, 2.
+ A fileview's contextmenu now has an entry that makes it sort such
files more intelligently. Note that this only affects files with
names that _end_ in digits, not those with digits elsewhere in the name.
+ Building 4Pane now uses Automake.
- Split out language files into their own sub-package
OBS-URL: https://build.opensuse.org/request/show/559884
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/4pane?expand=0&rev=9
2017-12-25 19:58:08 +00:00
|
|
|
%lang_package
|
|
|
|
|
2017-04-27 12:35:46 +00:00
|
|
|
%prep
|
2022-08-25 07:21:42 +00:00
|
|
|
%autosetup -p1
|
2017-04-27 12:35:46 +00:00
|
|
|
sed -i -e "s|\$(datadir)/doc|%{_docdir}|g" Makefile.in
|
|
|
|
sed -i -e "s|/usr/doc/4Pane/|%{_docdir}/4Pane/|g" Configure.cpp
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
2020-10-07 16:45:05 +00:00
|
|
|
%make_build
|
2017-04-27 12:35:46 +00:00
|
|
|
|
|
|
|
%install
|
2020-10-07 16:45:05 +00:00
|
|
|
%make_install
|
2017-04-27 12:35:46 +00:00
|
|
|
%find_lang 4Pane
|
|
|
|
mkdir -vp %{buildroot}/%{_datadir}/applications
|
|
|
|
cd %{buildroot}/%{_datadir}/applications
|
|
|
|
ln -s ../4Pane/rc/4Pane.desktop 4Pane.desktop
|
|
|
|
pushd %{buildroot}%{_datadir}/icons/hicolor/48x48/apps
|
2017-06-29 07:40:17 +00:00
|
|
|
convert -strip -resize 48x48! 4Pane.png 4Pane.png
|
2017-04-27 12:35:46 +00:00
|
|
|
popd
|
|
|
|
%fdupes -s %{buildroot}/%{_datadir}
|
|
|
|
|
Accepting request 559884 from home:posophe:branches:X11:Utilities
- Update to version 5.0
+ There is a simpler 'Find' dialog for everyday use.
Just as the QuickGrep dialog is good enough for most greps, a
simple one-page QuickFind that sets just the path, pattern and
search-type will be sufficient for most searches.
+ When large files are being moved or pasted, their progress is now
displayed in the statusbar.
+ It is now possible to make a particular fileview order its files
in a decimal-aware way. This is helpful in the case of files with
names like foo1.txt, foo2.txt, foo11.txt, foo12.txt, which normally
sort as 1, 11, 12, 2.
+ A fileview's contextmenu now has an entry that makes it sort such
files more intelligently. Note that this only affects files with
names that _end_ in digits, not those with digits elsewhere in the name.
+ Building 4Pane now uses Automake.
- Split out language files into their own sub-package
OBS-URL: https://build.opensuse.org/request/show/559884
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/4pane?expand=0&rev=9
2017-12-25 19:58:08 +00:00
|
|
|
%files
|
2017-05-31 16:52:25 +00:00
|
|
|
%doc LICENCE
|
2017-04-27 12:35:46 +00:00
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_bindir}/4Pane
|
|
|
|
%dir %{_datadir}/4Pane
|
|
|
|
%dir %{_datadir}/4Pane/bitmaps
|
|
|
|
%{_datadir}/4Pane/bitmaps/*
|
|
|
|
%{_datadir}/4Pane/rc
|
|
|
|
%{_datadir}/applications/4Pane.desktop
|
2020-03-28 16:46:35 +00:00
|
|
|
%{_datadir}/icons/hicolor/*
|
|
|
|
%{_datadir}/metainfo/4Pane.appdata.xml
|
2017-04-27 12:35:46 +00:00
|
|
|
%dir %{_docdir}/4Pane
|
|
|
|
%{_docdir}/4Pane/*
|
|
|
|
|
Accepting request 559884 from home:posophe:branches:X11:Utilities
- Update to version 5.0
+ There is a simpler 'Find' dialog for everyday use.
Just as the QuickGrep dialog is good enough for most greps, a
simple one-page QuickFind that sets just the path, pattern and
search-type will be sufficient for most searches.
+ When large files are being moved or pasted, their progress is now
displayed in the statusbar.
+ It is now possible to make a particular fileview order its files
in a decimal-aware way. This is helpful in the case of files with
names like foo1.txt, foo2.txt, foo11.txt, foo12.txt, which normally
sort as 1, 11, 12, 2.
+ A fileview's contextmenu now has an entry that makes it sort such
files more intelligently. Note that this only affects files with
names that _end_ in digits, not those with digits elsewhere in the name.
+ Building 4Pane now uses Automake.
- Split out language files into their own sub-package
OBS-URL: https://build.opensuse.org/request/show/559884
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/4pane?expand=0&rev=9
2017-12-25 19:58:08 +00:00
|
|
|
%files lang -f 4Pane.lang
|
|
|
|
|
2017-04-27 12:35:46 +00:00
|
|
|
%changelog
|