at-poke.spec
author dermotm
Mon, 08 Mar 2004 08:12:13 +0000
changeset 2159 3613e9792e23
parent 2035 02f0a3709e34
child 2202 eb1fd076c179
permissions -rw-r--r--
Incremented release numbers for build 05
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2006
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     1
Name:         at-poke
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     2
License:      LGPL
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     3
Group:        System/Libraries/GNOME
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     4
Version:      0.2.1
2159
3613e9792e23 Incremented release numbers for build 05
dermotm
parents: 2035
diff changeset
     5
Release:      5
2006
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     6
Distribution: Cinnabar 
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     7
Vendor:       Sun Microsystems, Inc.
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     8
Summary:      Tool to poke around accessibility infrastructure
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
     9
Source:       http://ftp.gnome.org/pub/GNOME/sources/at-poke/0.2/%{name}-%{version}.tar.bz2
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    10
URL:          http://developer.gnome.org/projects/gap
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    11
BuildRoot:    %{_tmppath}/%{name}-%{version}-build
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    12
Docdir:       %{_defaultdocdir}/doc
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    13
Autoreqprov:  on
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    14
Prereq:       /sbin/ldconfig
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    15
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    16
%define libgnomeui_version 2.4.0.1
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    17
%define gtk2_version 2.2.4
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    18
%define atk_version 1.4.0
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    19
%define at_spi_version 1.1.8
2027
c05294e22973 2004-02-26 Laszlo Peter <[email protected]>
laca
parents: 2006
diff changeset
    20
%define libgail_gnome_version 1.0.2
2006
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    21
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    22
# Requirements: libgail-gnome libglade-2.0
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    23
BuildRequires: gtk2-devel >= %{gtk2_version}
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    24
BuildRequires: libgnomeui-devel >= %{libgnomeui_version}
2027
c05294e22973 2004-02-26 Laszlo Peter <[email protected]>
laca
parents: 2006
diff changeset
    25
BuildRequires: at-spi-devel >= %{at_spi_version}
2035
02f0a3709e34 Add libgail-gnome as build requirement.
dc144907
parents: 2027
diff changeset
    26
BuildRequires: libgail-gnome >= %{libgail_gnome_version}
2006
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    27
Requires:      atk >= %{atk_version}
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    28
Requires:      gtk2 >= %{gtk2_version}
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    29
Requires:      libgnomeui >= %{libgnomeui_version}
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    30
Requires:      at-spi >= %{at_spi_version}
2027
c05294e22973 2004-02-26 Laszlo Peter <[email protected]>
laca
parents: 2006
diff changeset
    31
Requires:      libgail-gnome >= %{libgail_gnome_version}
2006
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    32
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    33
%description
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    34
at-poke is a tool that allows one to examine the widigts from an accessibility perspective.
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    35
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    36
%prep
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    37
%setup -q 
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    38
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    39
%build
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    40
./configure --prefix=%{_prefix} \
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    41
	    --disable-gtk-doc
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    42
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    43
make
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    44
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    45
%install
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    46
make DESTDIR=$RPM_BUILD_ROOT install
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    47
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    48
%clean
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    49
rm -rf $RPM_BUILD_ROOT
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    50
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    51
%post 
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    52
/sbin/ldconfig
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    53
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    54
%postun 
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    55
/sbin/ldconfig
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    56
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    57
%files
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    58
%defattr(-,root,root)
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    59
%{_bindir}/at-poke
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    60
%{_datadir}/at-poke/at-poke.glade2
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    61
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    62
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    63
%changelog
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    64
* Wed Feb 25 2004 - [email protected]
a9557990edef Tool to poke around accessibility infrastructure.
dc144907
parents:
diff changeset
    65
- Initial release version for at-poke