This commit is contained in:
parent
b5247e66c8
commit
d98f3f848b
BIN
Tix8.4.3-src.tar.bz2
(Stored with Git LFS)
Normal file
BIN
Tix8.4.3-src.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:593f903190fd75f4fac17408f33c51d77e18ad02cab540aad3209739a0ebaa3f
|
|
||||||
size 1595187
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 4 17:58:54 CEST 2008 - max@suse.de
|
||||||
|
|
||||||
|
- New version 8.4.3, works with Tcl/Tk 8.5.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 5 14:50:21 CEST 2007 - max@suse.de
|
Tue Jun 5 14:50:21 CEST 2007 - max@suse.de
|
||||||
|
|
||||||
|
67
tix.patch
67
tix.patch
@ -1,58 +1,13 @@
|
|||||||
--- Makefile.in
|
--- configure.in
|
||||||
+++ Makefile.in
|
+++ configure.in
|
||||||
@@ -93,12 +93,13 @@
|
@@ -100,8 +100,8 @@
|
||||||
datadir = @datadir@
|
#--------------------------------------------------------------------
|
||||||
mandir = @mandir@
|
|
||||||
includedir = @includedir@
|
|
||||||
+tclscriptdir = $(libdir)
|
|
||||||
|
|
||||||
DESTDIR =
|
# needed for tclPort.h and such ... can be corrected
|
||||||
|
-TEA_PRIVATE_TCL_HEADERS
|
||||||
|
-TEA_PRIVATE_TK_HEADERS
|
||||||
|
+TEA_PUBLIC_TCL_HEADERS
|
||||||
|
+TEA_PUBLIC_TK_HEADERS
|
||||||
|
|
||||||
PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION)
|
#--------------------------------------------------------------------
|
||||||
pkgdatadir = $(datadir)/$(PKG_DIR)
|
# For Unix/Tk builds, make sure that the X libraries/headers are found.
|
||||||
-pkglibdir = $(libdir)/$(PKG_DIR)
|
|
||||||
+pkglibdir = $(tclscriptdir)/$(PKG_DIR)
|
|
||||||
pkgincludedir = $(includedir)/$(PKG_DIR)
|
|
||||||
|
|
||||||
top_builddir = .
|
|
||||||
@@ -296,7 +297,7 @@
|
|
||||||
(\
|
|
||||||
echo 'if {[catch {package require Tcl 8.4}]} return';\
|
|
||||||
echo 'package ifneeded $(PACKAGE_NAME) $(PACKAGE_VERSION) \
|
|
||||||
- [list load [file join $$dir $(PKG_LIB_FILE)] $(PACKAGE_NAME)]'\
|
|
||||||
+ [list load $(PKG_LIB_FILE) $(PACKAGE_NAME)]'\
|
|
||||||
) > pkgIndex.tcl
|
|
||||||
|
|
||||||
#========================================================================
|
|
||||||
@@ -327,23 +328,24 @@
|
|
||||||
#========================================================================
|
|
||||||
|
|
||||||
install-lib-binaries:
|
|
||||||
- @mkdir -p $(DESTDIR)$(pkglibdir)
|
|
||||||
+ @mkdir -p $(DESTDIR)$(libdir)
|
|
||||||
@list='$(lib_BINARIES)'; for p in $$list; do \
|
|
||||||
if test -f $$p; then \
|
|
||||||
- echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p"; \
|
|
||||||
- $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p; \
|
|
||||||
- echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \
|
|
||||||
- $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \
|
|
||||||
+ echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libdir)/$$p"; \
|
|
||||||
+ $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libdir)/$$p; \
|
|
||||||
+ echo " $(RANLIB) $(DESTDIR)$(libdir)/$$p"; \
|
|
||||||
+ $(RANLIB) $(DESTDIR)$(libdir)/$$p; \
|
|
||||||
ext=`echo $$p|sed -e "s/.*\.//"`; \
|
|
||||||
if test "x$$ext" = "xdll"; then \
|
|
||||||
lib=`basename $$p|sed -e 's/.[^.]*$$//'`.lib; \
|
|
||||||
if test -f $$lib; then \
|
|
||||||
- echo " $(INSTALL_DATA) $$lib $(DESTDIR)$(pkglibdir)/$$lib"; \
|
|
||||||
- $(INSTALL_DATA) $$lib $(DESTDIR)$(pkglibdir)/$$lib; \
|
|
||||||
+ echo " $(INSTALL_DATA) $$lib $(DESTDIR)$(libdir)/$$lib"; \
|
|
||||||
+ $(INSTALL_DATA) $$lib $(DESTDIR)$(libdir)/$$lib; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
+ @mkdir -p $(DESTDIR)$(pkglibdir)
|
|
||||||
@echo "Installing library files to $(DESTDIR)$(pkglibdir)/$$destp";
|
|
||||||
@list='$(PKG_TCL_SOURCES)'; for p in $$list; do \
|
|
||||||
if test -f $(srcdir)/$$p; then \
|
|
||||||
|
70
tix.spec
70
tix.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package tix (Version 8.4.0)
|
# spec file for package tix (Version 8.4.3)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -10,21 +10,22 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: tix
|
Name: tix
|
||||||
BuildRequires: itcl tk-devel xorg-x11-devel
|
BuildRequires: fdupes itcl tk-devel xorg-x11-devel
|
||||||
%define V_TIX 8.1.%tcl_version
|
%define V_TIX 8.1.%tcl_version
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
%define mandir /usr/share/man
|
%define mandir /usr/share/man
|
||||||
Version: 8.4.0
|
Version: 8.4.3
|
||||||
Release: 1
|
Release: 1
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Summary: Tools for tk
|
Summary: Tools for tk
|
||||||
Group: Development/Libraries/Tcl
|
Group: Development/Libraries/Tcl
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Source: %name-%version.tar.bz2
|
Source: Tix%version-src.tar.bz2
|
||||||
Patch0: %name.patch
|
Patch0: %name.patch
|
||||||
Group: Development/Libraries/Tcl
|
Group: Development/Libraries/Tcl
|
||||||
License: Public Domain, Freeware, docs/license.tcltk docs/license.html_lib.
|
License: Public Domain, Freeware
|
||||||
Summary: Tools for tk
|
Summary: Tools for tk
|
||||||
Provides: tixwish tixwish%V_TIX
|
Provides: tixwish tixwish%V_TIX
|
||||||
|
|
||||||
@ -40,11 +41,12 @@ in intuitive ways.
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q -n Tix%version
|
||||||
%patch0
|
%patch0
|
||||||
find docs -type f | xargs chmod a-x
|
find docs -type f | xargs chmod a-x
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
autoreconf
|
||||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||||
./configure \
|
./configure \
|
||||||
--with-tcl=%_libdir \
|
--with-tcl=%_libdir \
|
||||||
@ -55,9 +57,9 @@ export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
|||||||
make
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install-binaries install-libraries \
|
make install \
|
||||||
DESTDIR=%buildroot \
|
DESTDIR=%buildroot \
|
||||||
tclscriptdir=%tclscriptdir
|
libdir=%_libdir/tcl
|
||||||
MANN=%buildroot/%_mandir/mann
|
MANN=%buildroot/%_mandir/mann
|
||||||
mkdir -p $MANN
|
mkdir -p $MANN
|
||||||
pushd man
|
pushd man
|
||||||
@ -72,63 +74,63 @@ rm -rf %buildroot
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ABOUT* README* ChangeLog license.terms index.html
|
%doc ABOUT* README* ChangeLog license.terms index.html
|
||||||
%doc docs
|
%doc docs/Release* docs/*html docs/img docs/pdf/* demos
|
||||||
%doc %_mandir/*/*
|
%doc %_mandir/*/*
|
||||||
%_libdir/lib*
|
%_libdir/tcl
|
||||||
|
|
||||||
%tclscriptdir/*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jun 05 2007 - max@suse.de
|
* Fri Apr 04 2008 max@suse.de
|
||||||
|
- New version 8.4.3, works with Tcl/Tk 8.5.
|
||||||
|
* Tue Jun 05 2007 max@suse.de
|
||||||
- New version: 8.4.0
|
- New version: 8.4.0
|
||||||
- Lots of cleanup and bugs fixed.
|
- Lots of cleanup and bugs fixed.
|
||||||
- Better per-default compliance with rpmlint.
|
- Better per-default compliance with rpmlint.
|
||||||
- The 'tixwish' executable is gone. Use tclsh or wish and load the
|
- The 'tixwish' executable is gone. Use tclsh or wish and load the
|
||||||
Tix package dynamically.
|
Tix package dynamically.
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Fri Jul 29 2005 - max@suse.de
|
* Fri Jul 29 2005 max@suse.de
|
||||||
- Moved script library to /usr/share/tcl .
|
- Moved script library to /usr/share/tcl .
|
||||||
* Thu Feb 05 2004 - max@suse.de
|
* Thu Feb 05 2004 max@suse.de
|
||||||
- Building as a shared lib again.
|
- Building as a shared lib again.
|
||||||
- Added -fno-strict-aliasing to CFLAGS.
|
- Added -fno-strict-aliasing to CFLAGS.
|
||||||
* Thu Jan 15 2004 - max@suse.de
|
* Thu Jan 15 2004 max@suse.de
|
||||||
- New version: 8.1.4
|
- New version: 8.1.4
|
||||||
* Sat Jan 10 2004 - adrian@suse.de
|
* Sat Jan 10 2004 adrian@suse.de
|
||||||
- build as user
|
- build as user
|
||||||
* Wed Jul 23 2003 - max@suse.de
|
* Wed Jul 23 2003 max@suse.de
|
||||||
- Added tk-devel to neededforbuild.
|
- Added tk-devel to neededforbuild.
|
||||||
* Wed May 21 2003 - ro@suse.de
|
* Wed May 21 2003 ro@suse.de
|
||||||
- remove .cvsignore files
|
- remove .cvsignore files
|
||||||
- fix filelist
|
- fix filelist
|
||||||
* Mon Nov 11 2002 - ro@suse.de
|
* Tue Nov 12 2002 ro@suse.de
|
||||||
- changed neededforbuild <xshared> to <x-devel-packages>
|
- changed neededforbuild <xshared> to <x-devel-packages>
|
||||||
- changed neededforbuild <xdevel> to <>
|
- changed neededforbuild <xdevel> to <>
|
||||||
* Tue Jul 09 2002 - max@suse.de
|
* Tue Jul 09 2002 max@suse.de
|
||||||
- Ready for Tcl/Tk 8.4.
|
- Ready for Tcl/Tk 8.4.
|
||||||
- Doesn't break on KDE3 anymore [Bug #16428].
|
- Doesn't break on KDE3 anymore [Bug #16428].
|
||||||
* Wed Apr 10 2002 - max@suse.de
|
* Wed Apr 10 2002 max@suse.de
|
||||||
- Fixed for new version of autobuild.
|
- Fixed for new version of autobuild.
|
||||||
* Wed Feb 20 2002 - max@suse.de
|
* Wed Feb 20 2002 max@suse.de
|
||||||
- Fixed for lib64-s390x.
|
- Fixed for lib64-s390x.
|
||||||
* Thu Jan 17 2002 - max@suse.de
|
* Thu Jan 17 2002 max@suse.de
|
||||||
- New version 8.1.3
|
- New version 8.1.3
|
||||||
- Tix is a separate package again. The new version is able to build
|
- Tix is a separate package again. The new version is able to build
|
||||||
without having the Tcl/Tk sources at hand.
|
without having the Tcl/Tk sources at hand.
|
||||||
- Don't build static libs anymore.
|
- Don't build static libs anymore.
|
||||||
* Tue Nov 24 1998 - max@suse.de
|
* Tue Nov 24 1998 max@suse.de
|
||||||
- merged spec-files into tcl_new.spec
|
- merged spec-files into tcl_new.spec
|
||||||
* Mon Nov 23 1998 - max@suse.de
|
* Mon Nov 23 1998 max@suse.de
|
||||||
- building with new Tcl/Tk version: 8.0.4
|
- building with new Tcl/Tk version: 8.0.4
|
||||||
- tixwish is now dynamically linked to libtcl
|
- tixwish is now dynamically linked to libtcl
|
||||||
* Wed Sep 23 1998 - ro@suse.de
|
* Wed Sep 23 1998 ro@suse.de
|
||||||
- added to specfile: applx patch for tcl8.0
|
- added to specfile: applx patch for tcl8.0
|
||||||
* Thu May 14 1998 - hf@suse.de
|
* Thu May 14 1998 hf@suse.de
|
||||||
- english and german README.SuSE
|
- english and german README.SuSE
|
||||||
* Mon Feb 23 1998 - hf@suse.de
|
* Mon Feb 23 1998 hf@suse.de
|
||||||
- changed README.SuSE
|
- changed README.SuSE
|
||||||
* Mon Feb 16 1998 - hf@suse.de
|
* Mon Feb 16 1998 hf@suse.de
|
||||||
- changes in spec file
|
- changes in spec file
|
||||||
* Thu Feb 05 1998 - hf@suse.de
|
* Thu Feb 05 1998 hf@suse.de
|
||||||
new package Tix for Tcl/Tk 8.0
|
new package Tix for Tcl/Tk 8.0
|
||||||
and new directorypath to tcl/tk in /usr/lib/tcltk
|
and new directorypath to tcl/tk in /usr/lib/tcltk
|
||||||
|
Loading…
Reference in New Issue
Block a user