1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
# Note that this is NOT a relocatable package
%define ver @SPEC_VERSION@
%define rel @SPEC_CVS_VERSION@
%define prefix @prefix@
Name: ibtk
Summary: Insomnia's Basic ToolKit
Version: %ver
Release: %rel
Copyright: GPL
Group: Development/Libraries
Source0: http://www.core.binghamton.edu/~insomnia/gatos/@TAR_NAME@
Source1: @TAR_NAME@.tar.gz
URL: http://www.core.binghamton.edu/~insomnia/gatos/
%description
Basic toolkit for gatos
%setup -b 1 -T
%build
cd ../SOURCES
tar xzvf @TAR_NAME@.tar.gz
cd @TAR_NAME@
./configure
make
%install
cd @TAR_NAME@
make install
%clean
cd ../SOURCES
rm -rf @TAR_NAME@
%files
%{prefix}/include/ibtk/*
%{prefix}/lib/libibtk.a
%{prefix}/lib/libibtk.la
## %{prefix}/lib/libibtk.so.@IBTK_MAJOR_VERSION@.@IBTK_MINOR_VERSION@.@IBTK_SUB_VERSION@
%changelog
* Mon Dec 20 1999 insomnia
Version 0.0.14 released:
-Minor bugfixes.
-Renamed itk to ibtk (libitk -> libibtk).
-Added IBTK version.h defines.
-Added doublclick callback to IWindow.
-Added ELEMENT_SKIP support to IIntBox.
-Added IIntBox ElementFlags support.
-Added iconwindow support.
-Added IBTK_WRAP support to IIntBox.
-Started adding /etc/ibtk.conf support.
-Added IDoDad flags support.
-Added IBTK idle support (ActivityCallback).
-Added ClickCallback support.
-Fixed icon-name issue with IWindow.
-Added generic hook support.
-Fixed egcs compile with iintbox and irealbox callbacks.
-Added DragCallback support.
-Added ReleaseCallback support.
Version 0.0.13 released:
-Various bugfixes.
Version 0.0.12 released:
-Fixed Enter/Backspace fix.
Version 0.0.11 released:
-Fixed Enter/Backspace issues.
Version 0.0.10 released:
-Fixed hide bug in ITextBox.
Version 0.0.9 released:
-Various Documentation updates.
Version 0.0.8 released:
-IBox and IIntBox annoyances reduced.
-A few bugfixes.
Version 0.0.7 released:
-Full "make install" support, and proper #includes.
Version 0.0.6 released:
-Unhandledcallback now called for all unhandled events.
(Thanks to yvind Aabling).
Version 0.0.5 released:
-Fixed keydown bug in IBox.
-Fixed reposition bug.
-Receive Visibility events (dumped to unhandledcallback).
Version 0.0.4 released:
-Temporary fix for segfault int IListBox::Init()
Version 0.0.3 released:
-Fixed issue with blank window titles.
Version 0.0.2 released:
-Fixed unable to open DISPLAY segfault.
-Fixed many hide/show and redraw issues.
-Added mouse cursor positioning in boxes.
Version 0.0.1 released:
-First public release.
|