From 3bd63647333cb70952f3565159c81c7e50d69fa8 Mon Sep 17 00:00:00 2001 From: ericm Date: Mon, 14 Feb 2000 22:43:32 +0000 Subject: * unix/tk.spec: RPM specification for producing a binary Tk RPM for Linux. * unix/Makefile.in: Added rpm target to generate Tk binary RPM. --- unix/Makefile.in | 16 +++++++++++++++- unix/tk.spec | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 unix/tk.spec diff --git a/unix/Makefile.in b/unix/Makefile.in index 10827f9..b4b3437 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.40 2000/02/10 08:53:14 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.41 2000/02/14 22:43:32 ericm Exp $ # Current Tk version; used in various names. @@ -918,6 +918,20 @@ checkstubs: done +# +# Target to create a Tk RPM for Linux. Requires that you be on a Linux +# system. +# + +rpm: all /bin/rpm + rm -f THIS.TCL.SPEC + echo "%define _builddir `pwd`" > THIS.TK.SPEC + echo "%define _rpmdir `pwd`/RPMS" >> THIS.TK.SPEC + cat tk.spec >> THIS.TK.SPEC + mkdir -p RPMS/i386 + rpm -bb THIS.TK.SPEC + mv RPMS/i386/*.rpm . + rm -rf RPMS THIS.TK.SPEC # # Target to create a proper Tk distribution from information in the diff --git a/unix/tk.spec b/unix/tk.spec new file mode 100644 index 0000000..a69a68d --- /dev/null +++ b/unix/tk.spec @@ -0,0 +1,52 @@ +# $Id: tk.spec,v 1.1 2000/02/14 22:43:32 ericm Exp $ +# This file is the basis for a binary Tk Linux RPM. + +%define version 8.3.0 +%define directory /usr/local + +Summary: Tk graphical toolkit for the Tcl scripting language. +Name: tk +Version: %{version} +Release: 1 +Copyright: BSD +Group: Development/Languages +Source: ftp://ftp.scriptics.com/pub/tcl/tcl8_3/tk%{version}.tar.gz +URL: http://www.scriptics.com/ +Packager: Scriptics Corporation +Buildroot: /var/tmp/%{name}%{version} +Requires: XFree86-libs >= 3.3.3, XFree86-devel >= 3.3.3, tcl = 8.3.0 + +%description +The Tcl (Tool Command Language) provides a powerful platform for +creating integration applications that tie together diverse +applications, protocols, devices, and frameworks. When paired with +the Tk toolkit, Tcl provides the fastest and most powerful way to +create GUI applications that run on PCs, Unix, and the Macintosh. Tcl +can also be used for a variety of web-related tasks and for creating +powerful command languages for applications. + +%prep + +%build +./configure --prefix %{directory} --exec-prefix %{directory} +make CFLAGS=$RPM_OPT_FLAGS + +%install +rm -rf $RPM_BUILD_ROOT +make INSTALL_ROOT=$RPM_BUILD_ROOT install + +%clean +rm -rf $RPM_BUILD_ROOT + +# to create the tcl files list, comment out tk in the install section above, +# then run "rpm -bi" then do a find from the build root directory, +# and remove the files in specific directories which suffice by themselves, +# then to create the files list for tk, uncomment tk, comment out tcl, +# then rm -rf $RPM_BUILD_ROOT then rpm --short-circuit -bi then redo a find, +# and remove the files in specific directories which suffice by themselves. +%files -n tk +%defattr(-,root,root) +%{directory}/lib +%{directory}/bin +%{directory}/include +%{directory}/man -- cgit v0.12