- Terminal was renamed to xfce4-terminal
OBS-URL: https://build.opensuse.org/package/show/X11:xfce/xfce4-terminal?expand=0&rev=1
This commit is contained in:
commit
eeb4265805
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
xfce4-terminal-0.6.0.tar.bz2
Normal file
3
xfce4-terminal-0.6.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ef54194e69b4f3ada885d73f6950b7cf9d2300a532e71963b9b8ee4a7598edf
|
||||
size 812533
|
5
xfce4-terminal.changes
Normal file
5
xfce4-terminal.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 28 09:37:33 UTC 2012 - gber@opensuse.org
|
||||
|
||||
- Terminal was renamed to xfce4-terminal
|
||||
|
109
xfce4-terminal.spec
Normal file
109
xfce4-terminal.spec
Normal file
@ -0,0 +1,109 @@
|
||||
#
|
||||
# spec file for package xfce4-terminal
|
||||
#
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2012 Guido Berhoerster.
|
||||
#
|
||||
# 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.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: xfce4-terminal
|
||||
Version: 0.6.0
|
||||
Release: 0
|
||||
Summary: Terminal Emulator for the Xfce Desktop Environment
|
||||
License: GPL-2.0+
|
||||
Group: System/X11/Terminals
|
||||
Url: http://docs.xfce.org/apps/terminal/start
|
||||
Source0: http://archive.xfce.org/src/apps/xfce4-terminal/0.6/%{name}-%{version}.tar.bz2
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: intltool
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: pkgconfig(dbus-glib-1)
|
||||
BuildRequires: pkgconfig(exo-1)
|
||||
BuildRequires: pkgconfig(gio-2.0)
|
||||
BuildRequires: pkgconfig(gtk+-2.0)
|
||||
BuildRequires: pkgconfig(vte)
|
||||
BuildRequires: pkgconfig(libxfce4ui-1)
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Recommends: %{name}-lang = %{version}
|
||||
Provides: Terminal = %{version}
|
||||
Obsoletes: Terminal < %{version}
|
||||
|
||||
%description
|
||||
xfce4-terminal is a lightweight and easy to use terminal emulator for the Xfce
|
||||
desktop environment. Its major features include a simple configuration
|
||||
interface, the ability to use multiple tabs with terminals within a single
|
||||
window, the possibility to have a pseudo-transparent terminal background, and a
|
||||
compact mode where both the menubar and the window decorations are hidden which
|
||||
helps to save space on the desktop.
|
||||
|
||||
%lang_package
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags} V=1
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
%suse_update_desktop_file %{name}
|
||||
|
||||
# create a list of localized man directories, these need to be owned
|
||||
(
|
||||
printf '%%%%defattr(-,root,root)\n'
|
||||
cd '%{buildroot}'
|
||||
for dir in ".%{_mandir}/"*; do
|
||||
[ -d "${dir}" ] || continue
|
||||
case ${dir##*/} in
|
||||
man*) continue ;;
|
||||
*) lang="${dir##*/}"
|
||||
printf "%%%%dir %%%%lang(%%s) %%s\n" "${lang}" "${dir#.}"
|
||||
for subdir in "${dir}/"*; do
|
||||
[ -d "${subdir}" ] || continue
|
||||
printf "%%%%dir %%%%lang(%%s) %%s\n" "${lang}" \
|
||||
"${subdir#.}"
|
||||
done
|
||||
;;
|
||||
esac
|
||||
done
|
||||
) >> %{name}.lang
|
||||
%find_lang %{name} --with-man %{?no_lang_C}
|
||||
|
||||
%fdupes %{buildroot}/%{_mandir}
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%post
|
||||
%desktop_database_post
|
||||
|
||||
%postun
|
||||
%desktop_database_postun
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc README ChangeLog COPYING AUTHORS HACKING NEWS THANKS
|
||||
%{_bindir}/xfce4-terminal
|
||||
%dir %{_datadir}/xfce4
|
||||
%{_datadir}/xfce4/terminal
|
||||
%{_datadir}/applications/xfce4-terminal.desktop
|
||||
%dir %{_datadir}/gnome-control-center
|
||||
%{_datadir}/gnome-control-center/default-apps
|
||||
%doc %{_mandir}/man1/xfce4-terminal.1*
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user