bb3b10290f
* (bug)[f1a3ca] Memory leak in [text] B-tree * (bug)[ee40fd] Report [console] init errors * (bug)[3295446] Improve history visibility in [console] * (bug)canvas closed polylines fully honor -joinstyle * (bug)[cc42cc] out of mem crash in tests imgPhoto-18.* * (bug)[3406785] fix coords rounding when drawing canvas items * (bug)[8277e1] linux fontchooser sync with available fonts * (bug)[5239fd] Segfault copying a photo image to itself * (bug)[514ff6] canvas rotated text overlap detection * (bug)[1e0db2] canvas rchars artifacts * (bug)[d9fdfa] display of Long non-wrapped lines in text * (bug)[dd9667] text anchor not set * (bug)[bb6b40] ::tk::AmpMenuArgs and 'entryconf' * (bug)[55b95f] Crash [scale] with a bignum value * (bug)[ce62c8] text-37.1 fails * (bug)[0ef1c5] OS X - tests menu-22.[345] hang * (bug) display of embedded toplevels * (bug)[73ba07] Correct property type for MULTIPLE conversion * (bug) Memory leak in tkImgPhoto.c. * (bug) Defeat zombie toplevels * (bug) [wm withdraw] on Window and Dock menus * (new)[TIP 477] nmake build system reform - Sync SLE12 with Factory to fix a bug in Itcl that was affecting iwidgets (bsc#903017). OBS-URL: https://build.opensuse.org/package/show/devel:languages:tcl/tk?expand=0&rev=66
153 lines
4.1 KiB
RPMSpec
153 lines
4.1 KiB
RPMSpec
#
|
|
# spec file for package tk
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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: tk
|
|
BuildRequires: imake
|
|
BuildRequires: libX11-devel
|
|
BuildRequires: libXScrnSaver-devel
|
|
BuildRequires: libXft-devel
|
|
BuildRequires: libXt-devel
|
|
BuildRequires: pkg-config
|
|
BuildRequires: tcl-devel
|
|
Url: http://www.tcl.tk
|
|
Version: 8.6.8
|
|
Release: 0
|
|
%define rrc %nil
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
Summary: Graphical User Interface Toolkit for Tcl
|
|
License: TCL
|
|
Group: Development/Languages/Tcl
|
|
Obsoletes: tkcon < 2.7
|
|
Provides: tkcon = 2.7
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: tk-64bit
|
|
%endif
|
|
#
|
|
Provides: wish
|
|
Provides: wish8.6
|
|
Requires: tcl >= %version
|
|
Requires: xhost
|
|
PreReq: /bin/rm
|
|
Source0: ftp://ftp.tcl.tk/pub/tcl/tcl8_6/%name%{version}%{rrc}-src.tar.gz
|
|
Source1: tk-rpmlintrc
|
|
Source2: baselibs.conf
|
|
Source3: http://tkcon.cvs.sourceforge.net/tkcon/tkcon/tkcon.tcl
|
|
Patch0: %name.patch
|
|
Patch1: tk-8.5.12-fix-xft.patch
|
|
|
|
%description
|
|
Tk is a graphical user interface toolkit that takes developing desktop
|
|
applications to a higher level than conventional approaches. Tk is the
|
|
standard GUI not only for Tcl, but for many other dynamic languages,
|
|
and can produce rich, native applications that run unchanged across
|
|
Windows, Mac OS X, Linux and more.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
The Tcl Core Team <tcl-core@lists.sourceforge.net>
|
|
|
|
%package devel
|
|
Summary: Header Files and C API Documentation for Tk
|
|
Group: Development/Libraries/Tcl
|
|
Requires: tcl-devel
|
|
Requires: tk = %version
|
|
Requires: xorg-x11-libX11-devel
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: tk-devel-64bit
|
|
%endif
|
|
#
|
|
|
|
%description devel
|
|
This package contains header files and documentation needed for writing
|
|
Tk extensions in compiled languages like C, C++, etc., or for embedding
|
|
Tk in programs written in such languages.
|
|
|
|
This package is not needed for writing extensions or applications for
|
|
Tk in the Tcl language itself.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
The Tcl Core Team <tcl-core@lists.sourceforge.net>
|
|
|
|
%define TK_MINOR %(echo %version | cut -c1-3)
|
|
%define scriptdir %(echo 'puts -nonewline [file dirname $tcl_library]' | tclsh)/tk%TK_MINOR
|
|
|
|
%prep
|
|
%setup -q -n %name%version
|
|
%patch0
|
|
%patch1 -p1
|
|
|
|
%build
|
|
cd unix
|
|
%configure \
|
|
--with-tcl=%_libdir \
|
|
--enable-threads \
|
|
--enable-man-symlinks \
|
|
--enable-man-compression=gzip
|
|
make %{?_smp_mflags} \
|
|
TK_LIBRARY="%scriptdir" \
|
|
TK_PKG_DIR="tcl/tk%TK_MINOR"
|
|
|
|
%install
|
|
# these renamings are needed to avoid some file name clashes with other packages
|
|
mv doc/menubar.n doc/tk_menubar.n
|
|
mv doc/dialog.n doc/tk_dialog.n
|
|
mv doc/panedwindow.n doc/tk_panedwindow.n
|
|
make -C unix install install-private-headers \
|
|
INSTALL_ROOT=%buildroot \
|
|
TK_LIBRARY="%scriptdir" \
|
|
TK_PKG_DIR="tcl/tk%TK_MINOR"
|
|
ln -sf wish%TK_MINOR %buildroot%_prefix/bin/wish
|
|
ln -sf wish%TK_MINOR.n.gz %buildroot%_mandir/mann/wish.n.gz
|
|
install -m 0755 %{S:3} %buildroot%_bindir/tkcon
|
|
|
|
%if %_lib == lib64
|
|
|
|
%post
|
|
test -L /usr/lib/tk%TK_MINOR && rm -f /usr/lib/tk%TK_MINOR
|
|
exit 0
|
|
%endif
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README changes license.terms ChangeLog*
|
|
%docdir %_mandir/mann
|
|
%doc %_mandir/man1/*
|
|
%doc %_mandir/mann/*
|
|
%_prefix/bin/*
|
|
%_libdir/*.so
|
|
%scriptdir
|
|
%exclude %scriptdir/tkAppInit.c
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%doc %_mandir/man3/*
|
|
%_prefix/include/*
|
|
%scriptdir/tkAppInit.c
|
|
%attr(0644,root,root) %_libdir/*.a
|
|
%_libdir/tkConfig.sh
|
|
%_libdir/pkgconfig/*
|
|
|
|
%changelog
|