15c4a62
%global shortv %(echo %version|awk -F. '{print $1 "." $2}')
15c4a62
9fcd99b
Name:           cube
15c4a62
Version:        4.4
6892792
Release:        6%{?dist}
9fcd99b
Summary:        CUBE Uniform Behavioral Encoding generic presentation component
9fcd99b
9fcd99b
License:        BSD
9fcd99b
URL:            http://www.scalasca.org/software/cube-4.x/download.html
15c4a62
Source0:        http://apps.fz-juelich.de/scalasca/releases/cube/%shortv/dist/cubegui-%{version}.tar.gz
15c4a62
Source1:        http://apps.fz-juelich.de/scalasca/releases/cube/%shortv/dist/cubew-%{version}.tar.gz
15c4a62
Source2:        http://apps.fz-juelich.de/scalasca/releases/cube/%shortv/dist/cubelib-%{version}.tar.gz
Dave Love 50d6a76
# disable check for new versions
Orion Poplawski 1dc616a
Patch0:         cube-nocheck.patch
9fcd99b
BuildRequires:  dbus-devel
9fcd99b
BuildRequires:  qt4-devel
9fcd99b
BuildRequires:  chrpath
9fcd99b
BuildRequires:  desktop-file-utils
15c4a62
BuildRequires:  zlib-devel
15c4a62
BuildRequires:  %{?el6:devtoolset-6-}gcc-c++
Dave Love 50d6a76
Requires:       %{name}-libs%{?_isa} = %{version}-%{release}
9fcd99b
9fcd99b
%description
9fcd99b
CUBE (CUBE Uniform Behavioral Encoding) is a generic presentation component
9fcd99b
suitable for displaying a wide variety of performance metrics for parallel
9fcd99b
programs including MPI and OpenMP applications. CUBE allows interactive
9fcd99b
exploration of a multidimensional performance space in a scalable fashion.
9fcd99b
Scalability is achieved in two ways: hierarchical decomposition of individual
9fcd99b
dimensions and aggregation across different dimensions. All performance
9fcd99b
metrics are uniformly accommodated in the same display and thus provide the
9fcd99b
ability to easily compare the effects of different kinds of performance
9fcd99b
behavior.
9fcd99b
9fcd99b
Dave Love e353a7c
%package        libs
Dave Love e353a7c
Summary:        Libraries for %{name}
Dave Love e353a7c
Dave Love e353a7c
%description    libs
Dave Love e353a7c
Libraries required by %{name}
Dave Love e353a7c
9fcd99b
%package        devel
9fcd99b
Summary:        Development files for %{name}
Dave Love ce108f8
# cube-devel may be required by profiling packages on compute nodes,
Dave Love ce108f8
# so don't require cube, to avoid graphics
Dave Love ce108f8
Requires:       %{name}-libs%{?_isa} = %{version}-%{release}
9fcd99b
9fcd99b
%description    devel
9fcd99b
The %{name}-devel package contains libraries and header files for
9fcd99b
developing applications that use %{name}.
9fcd99b
9fcd99b
9fcd99b
%package        doc
9fcd99b
Summary:        Documentation for %{name}
9fcd99b
BuildArch:      noarch
9fcd99b
9fcd99b
%description    doc
9fcd99b
The %{name}-doc package contains documentation for %{name}.
9fcd99b
9fcd99b
9fcd99b
%prep
15c4a62
%setup -q -c
15c4a62
tar fx %SOURCE0
15c4a62
tar fx %SOURCE1
15c4a62
tar fx %SOURCE2
15c4a62
# Fiddle for cubelib not being installed when building cubegui
15c4a62
cat <<+ >cubelib-config
15c4a62
#!/bin/sh
15c4a62
case \$1 in
15c4a62
--cppflags|--cflags) printf '%s\n' -I$(pwd)/cubelib-%version/inst%_includedir/cubelib ;;
15c4a62
--ldflags)  printf '%s\n' -L$(pwd)/cubelib-%version/inst%_libdir ;;
15c4a62
--libs) printf '%s\n' '-lcube4 -lz' ;;
15c4a62
esac
15c4a62
+
15c4a62
chmod +x cubelib-config
15c4a62
cd cubegui-%version
Orion Poplawski 1dc616a
%patch0 -p1
9fcd99b
9fcd99b
9fcd99b
%build
15c4a62
%{?el6:. /opt/rh/devtoolset-6/enable}
6892792
# This may not be the best way to eliminate rpath from the -config binaries.
6892792
# rpmlint still complains, apparently about a string which doesn't
6892792
# affect --ldflags or show up in chrpath -l.
6892792
%global unhardcode \
6892792
  sed -i -e 's/HARDCODE_INTO_LIBS"]="1"/HARDCODE_INTO_LIBS"]="0"/' \\\
6892792
         -e "s/hardcode_into_libs='yes'/hardcode_into_libs='no'/"
15c4a62
cd cubew-%version
6892792
%configure --enable-shared --disable-static --disable-silent-rules
6892792
%unhardcode build-backend/config.status
15c4a62
%make_build
15c4a62
cd ../cubelib-%version
6892792
%configure --enable-shared --disable-static --disable-silent-rules
6892792
%unhardcode build-frontend/config.status
15c4a62
%make_build
15c4a62
# Collect it for use by cubegui
15c4a62
make install DESTDIR=$(pwd)/inst
15c4a62
# Wrong paths in .la cause trouble
15c4a62
rm inst%_libdir/*.la
15c4a62
cd ../cubegui-%version
15c4a62
# We can't use --with-scorep without it installed
9fcd99b
%configure --disable-static \
9fcd99b
  --disable-silent-rules \
15c4a62
  --with-platform=linux \
15c4a62
  --with-cubelib-config=$(pwd)/../cubelib-config
6892792
%unhardcode build-frontend/config.status
15c4a62
%make_build
9fcd99b
9fcd99b
9fcd99b
%install
15c4a62
%make_install -C cubew-%version
15c4a62
%make_install -C cubelib-%version
15c4a62
%make_install -C cubegui-%version
9fcd99b
find %{buildroot} -name '*.la' -exec rm -f {} ';'
9fcd99b
6892792
# Don't duplicate large files
6892792
ln -sf ../../cubelib/example/{trace,summary}.cubex %buildroot%_docdir/cubegui/example
6892792
Richard Hughes f965b29
# Register as an application to be visible in the software center
Richard Hughes f965b29
#
Richard Hughes f965b29
# NOTE: It would be *awesome* if this file was maintained by the upstream
Richard Hughes f965b29
# project, translated and installed into the right place during `make install`.
Richard Hughes f965b29
#
Richard Hughes f965b29
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
Richard Hughes f965b29
#
Richard Hughes f965b29
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
Richard Hughes f965b29
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/CUBE.appdata.xml <
Richard Hughes f965b29
Richard Hughes f965b29
Richard Hughes f965b29
Richard Hughes f965b29
<application>
Richard Hughes f965b29
 <id type="desktop">CUBE.desktop</id>
Richard Hughes f965b29
 <metadata_license>CC0-1.0</metadata_license>
Richard Hughes f965b29
 <project_license>BSD-3-Clause</project_license>
Richard Hughes f965b29
 <name>Cube</name>
Richard Hughes f965b29
 <summary>A presentation component suitable for displaying
Richard Hughes f965b29
performance data for parallel programs</summary>
Richard Hughes f965b29
 <description>
Richard Hughes f965b29
  

Richard Hughes f965b29
    "Cube" (CUBE Uniform Behavioral Encoding) is a presentation
Richard Hughes f965b29
    component suitable for displaying a wide variety of performance
Richard Hughes f965b29
    data for parallel programs including MPI and OpenMP applications.
Richard Hughes f965b29
  

Richard Hughes f965b29
  

Richard Hughes f965b29
    Program performance is represented in a multi-dimensional space including various program and
Richard Hughes f965b29
    system resources. The tool allows the interactive exploration of this
Richard Hughes f965b29
    space in a scalable fashion and browsing the different kinds of
Richard Hughes f965b29
    performance behavior with ease.  All metrics are uniformly accommodated in the 
Richard Hughes f965b29
    same display and thus provide the ability to easily compare the effects of 
Richard Hughes f965b29
    different kinds of program behavior.
Richard Hughes f965b29
  

Richard Hughes f965b29
  

Richard Hughes f965b29
    "Cube" also includes a library to
Richard Hughes f965b29
    read and write performance data as well as operators to compare,
Richard Hughes f965b29
    integrate, and summarize data from different experiments. 
Richard Hughes f965b29
  

Richard Hughes f965b29
  

Richard Hughes f965b29
    The Cube 4.x release series uses an incompatible API and
Richard Hughes f965b29
    file format compared to previous versions, however,
Richard Hughes f965b29
    existing files in CUBE3 format can still be processed
Richard Hughes f965b29
    for backwards-compatibility.    
Richard Hughes f965b29
  

Richard Hughes f965b29
 </description>
Richard Hughes f965b29
 <screenshots>
Richard Hughes f965b29
  <screenshot type="default" width="1152" height="648">http://apps.fz-juelich.de/scalasca/releases/cube/screenshots/topo1.png</screenshot>
Richard Hughes f965b29
  <screenshot width="1152" height="648">http://apps.fz-juelich.de/scalasca/releases/cube/screenshots/topo2.png</screenshot>
Richard Hughes f965b29
  <screenshot width="1152" height="648">http://apps.fz-juelich.de/scalasca/releases/cube/screenshots/box.png</screenshot>
Richard Hughes f965b29
  <screenshot width="1152" height="648">http://apps.fz-juelich.de/scalasca/releases/cube/screenshots/flat.png</screenshot>
Richard Hughes f965b29
  <screenshot width="1152" height="648">http://apps.fz-juelich.de/scalasca/releases/cube/screenshots/palette.png</screenshot>
Richard Hughes f965b29
 </screenshots>
Richard Hughes f965b29
 <url type="homepage">http://www.scalasca.org/software/cube-4.x/download.html</url>
Richard Hughes f965b29
 <updatecontact>scalasca_at_fz-juelich.de</updatecontact>
Richard Hughes f965b29
</application>
Richard Hughes f965b29
EOF
Richard Hughes f965b29
9fcd99b
# Strip rpath
Orion Poplawski 4b6dc6d
chrpath -d -k %{buildroot}%{_bindir}/* %{buildroot}%{_libdir}/{,cube-plugins/}*.so  || :
9fcd99b
9fcd99b
# Install desktop file
Dave Love 9139468
cat <<EOF >CUBE.desktop
Dave Love 9139468
[Desktop Entry]
Dave Love 9139468
Comment=Performance profile browser CUBE
Dave Love 9139468
Exec=/usr/bin/cube
8b21620
Icon=/usr/share/icons/cubegui/Cube.xpm
Dave Love 9139468
InitialPreference=3
Dave Love 9139468
MimeType=application/cube;
Dave Love 9139468
Name=Cube (scalasca.org)
Dave Love 9139468
Terminal=false
Dave Love 9139468
Type=Application
Dave Love 9139468
Categories=Science;ComputerScience;DataVisualization;
Dave Love 9139468
EOF
9fcd99b
desktop-file-install --dir=%{buildroot}%{_datadir}/applications CUBE.desktop
9fcd99b
8b21620
# For abipkgdiff/taskotron; fixme: is there a conventional place to put it?
8b21620
cat >%{buildroot}%{_libdir}/cube-plugins/plugins.abignore <
8b21620
[suppress_file]
8b21620
file_name_regexp = .*-plugin\\.so.*
8b21620
EOF
8b21620
9fcd99b
9fcd99b
%check
15c4a62
make -C cubelib-%version check || { cat test/test*/*log && false; }
15c4a62
make -C cubew-%version check || { cat test/test*/*log && false; }
9fcd99b
9fcd99b
9fcd99b
%post
Dave Love bfa13d3
/sbin/ldconfig
9fcd99b
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
9fcd99b
/usr/bin/update-desktop-database &> /dev/null || :
9fcd99b
9fcd99b
%postun
Dave Love bfa13d3
/sbin/ldconfig
9fcd99b
if [ $1 -eq 0 ] ; then
9fcd99b
    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
9fcd99b
    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
9fcd99b
fi
9fcd99b
/usr/bin/update-desktop-database &> /dev/null || :
9fcd99b
9fcd99b
%posttrans
9fcd99b
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
9fcd99b
Dave Love d855e92
%post libs -p /sbin/ldconfig
Dave Love d855e92
Dave Love d855e92
%postun libs -p /sbin/ldconfig
9fcd99b
9fcd99b
%files
15c4a62
%license cubegui-%version/COPYING
15c4a62
%doc cubegui-%version/AUTHORS
15c4a62
%doc cubegui-%version/ChangeLog
15c4a62
%doc cubegui-%version/OPEN_ISSUES
15c4a62
%doc cubegui-%version/README
9fcd99b
%{_bindir}/cube
9fcd99b
%{_bindir}/cube3to4
9fcd99b
%{_bindir}/cube4to3
9fcd99b
%{_bindir}/cube_calltree
9fcd99b
%{_bindir}/cube_canonize
9fcd99b
%{_bindir}/cube_clean
9fcd99b
%{_bindir}/cube_cmp
Orion Poplawski 4b6dc6d
%{_bindir}/cube_commoncalltree
9fcd99b
%{_bindir}/cube_cut
Orion Poplawski 748ea6e
%{_bindir}/cube_derive
9fcd99b
%{_bindir}/cube_diff
9fcd99b
%{_bindir}/cube_dump
9fcd99b
%{_bindir}/cube_exclusify
9fcd99b
%{_bindir}/cube_inclusify
9fcd99b
%{_bindir}/cube_info
9fcd99b
%{_bindir}/cube_is_empty
9fcd99b
%{_bindir}/cube_mean
9fcd99b
%{_bindir}/cube_merge
9fcd99b
%{_bindir}/cube_nodeview
9fcd99b
%{_bindir}/cube_part
9fcd99b
%{_bindir}/cube_rank
9fcd99b
%{_bindir}/cube_regioninfo
9fcd99b
%{_bindir}/cube_remap2
9fcd99b
%{_bindir}/cube_sanity
9fcd99b
%{_bindir}/cube_score
9fcd99b
%{_bindir}/cube_stat
9fcd99b
%{_bindir}/cube_test
9fcd99b
%{_bindir}/cube_topoassist
9fcd99b
%{_bindir}/tau2cube
Orion Poplawski 4b6dc6d
%{_libdir}/libgraphwidgetcommon-plugin.so.7*
04d6af8
%{_libdir}/lib%{name}4gui*.so.7*
Orion Poplawski 4b6dc6d
%{_libdir}/cube-plugins/
Richard Hughes f965b29
%{_datadir}/appdata/*.appdata.xml
9fcd99b
%{_datadir}/applications/CUBE.desktop
Orion Poplawski 4b6dc6d
%{_datadir}/icons/*
15c4a62
%{_datadir}/cubegui/
9fcd99b
Dave Love e353a7c
%files libs
15c4a62
%{_bindir}/cube_server
04d6af8
%exclude %{_libdir}/lib%{name}4gui*.so*
Dave Love e353a7c
%{_libdir}/lib%{name}*.so.7*
15c4a62
%{_libdir}/lib%{name}.tools*.so.0*
15c4a62
%{_datadir}/cubelib/
15c4a62
%{_datadir}/cubew/
Dave Love e353a7c
9fcd99b
%files devel
15c4a62
%{_bindir}/cubegui-config
15c4a62
%{_bindir}/cubelib-config
15c4a62
%{_bindir}/cubew-config
9fcd99b
%{_includedir}/%{name}*/
9fcd99b
%{_libdir}/lib%{name}*.so
Orion Poplawski 4b6dc6d
%{_libdir}/libgraphwidgetcommon-plugin.so
15c4a62
%doc cubegui-%version/examples
9fcd99b
9fcd99b
%files doc
15c4a62
%doc %_docdir/cubew
15c4a62
%doc %_docdir/cubelib
15c4a62
%doc %_docdir/cubegui
9fcd99b
9fcd99b
9fcd99b
%changelog
6892792
* Mon Oct 22 2018 Dave Love <loveshack@fedoraproject.org> - 4.4-6
6892792
- Avoid rpath in -config program ldflags
6892792
- Only ship one copy of .cubex example files
6892792
24c1146
* Fri Oct 12 2018 Dave Love <loveshack@fedoraproject.org> - 4.4-5
24c1146
- Bump release for f28 rebuild
24c1146
31613ed
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 4.4-4
31613ed
- Rebuild with fixed binutils
31613ed
04d6af8
* Fri Jul 27 2018 Dave Love <loveshack@fedoraproject.org> - 4.4-3
8b21620
- Add .abignore file
8b21620
- Fix desktop file
04d6af8
- Move libcube4gui to cube package to avoid cube-libs requiring Qt
04d6af8
16e42f8
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.4-2
16e42f8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8b21620
15c4a62
* Mon May 14 2018 Dave Love <loveshack@fedoraproject.org> - 4.4-1
15c4a62
- New version
15c4a62
- Considerably restructured for new source structure, but keeping the
15c4a62
  same built packages
15c4a62
3670aeb
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.5-4
3670aeb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3670aeb
ef4935a
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.5-3
ef4935a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
ef4935a
f3909fa
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.5-2
f3909fa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f3909fa
fe264eb
* Wed May 31 2017 Dave Love <loveshack@fedoraproject.org> - 4.3.5-1
fe264eb
- Update to 4.3.5 (#1456614)
fe264eb
8b10618
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.4-8
8b10618
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
8b10618
5d3dce9
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.4-7
5d3dce9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5d3dce9
7167bc2
* Mon Jan 09 2017 Kalev Lember <klember@redhat.com> - 4.3.4-6
7167bc2
- Fix icon path in the desktop file
7167bc2
Orion Poplawski 1dc616a
* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 4.3.4-5
Orion Poplawski 1dc616a
- Add patch to not wrap includes in extern "C" {}
Orion Poplawski 1dc616a
Dave Love bfa13d3
* Tue May 10 2016 Dave Love <loveshack@fedoraproject.org> - 4.3.4-4
Dave Love bfa13d3
- Run ldconfig for both main as well as libs (for libgraphwidgetcommon-plugin)
Dave Love bfa13d3
Dave Love d855e92
* Mon May  9 2016 Dave Love <loveshack@fedoraproject.org> - 4.3.4-3
Dave Love d855e92
- Run ldconfig for libs package, not main
Dave Love d855e92
Dave Love 50d6a76
* Thu May  5 2016 Dave Love <loveshack@fedoraproject.org> - 4.3.4-2
Dave Love 50d6a76
- Have cube require matching cube-libs
Dave Love 50d6a76
- Don't do network check for new version
Dave Love 50d6a76
Dave Love 9139468
* Wed May  4 2016 Dave Love <loveshack@fedoraproject.org> - 4.3.4-1
Dave Love 9139468
- Update to 4.3.4
Dave Love 9139468
- Adjust for desktop and module files removed from distribution
Dave Love 9139468
- Remove xerces from configure
Dave Love 9139468
- Reinstate smp make
Dave Love 9139468
7843dd6
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.3-2
7843dd6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7843dd6
Orion Poplawski 201f864
* Fri Dec 11 2015 Orion Poplawski <orion@cora.nwra.com> - 4.3.3-1
Orion Poplawski 201f864
- Update to 4.3.3
Orion Poplawski 201f864
Dave Love ce108f8
* Sat Oct  3 2015 Dave Love <loveshack@fedoraproject.org> - 4.3.2-3
Dave Love ce108f8
- Have devel package depend on cube-libs, not cube
Dave Love ce108f8
Dave Love e353a7c
* Fri Jun 26 2015 Dave Love <d.love@liverpool.ac.uk> - 4.3.2-2
Dave Love e353a7c
- Make separate libs package (for scorep)
Dave Love e353a7c
- Don't BR Java stuff
Dave Love e353a7c
Orion Poplawski 748ea6e
* Fri Jun 19 2015 Orion Poplawski <orion@cora.nwra.com> - 4.3.2-1
Orion Poplawski 748ea6e
- Update to 4.3.2
Orion Poplawski 748ea6e
- Drop java sub-package, moved to separate release
Orion Poplawski 748ea6e
58d0812
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.1-2
58d0812
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
58d0812
Orion Poplawski 4b6dc6d
* Tue May 5 2015 Orion Poplawski <orion@cora.nwra.com> - 4.3.1-1
Orion Poplawski 4b6dc6d
- Update to 4.3.1
Orion Poplawski 4b6dc6d
cf1f6a2
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 4.2.3-5
cf1f6a2
- Rebuilt for GCC 5 C++11 ABI change
cf1f6a2
Richard Hughes f965b29
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 4.2.3-4
Richard Hughes f965b29
- Add an AppData file for the software center
Richard Hughes f965b29
2896ab7
* Tue Mar  3 2015 Peter Robinson <pbrobinson@fedoraproject.org> 4.2.3-3
2896ab7
- rebuild (gcc5)
2896ab7
4b51f9e
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.3-2
4b51f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4b51f9e
Orion Poplawski d576f9f
* Thu Jul 17 2014 Orion Poplawski <orion@cora.nwra.com> - 4.2.3-1
Orion Poplawski d576f9f
- Update to 4.2.3
Orion Poplawski d576f9f
4c5a85b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.2-2
4c5a85b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
4c5a85b
9fcd99b
* Mon Mar 3 2014 Orion Poplawski <orion@cora.nwra.com> - 4.2.2-1
9fcd99b
- Update to 4.2.2
9fcd99b
- Fix doc duplication
9fcd99b
- Add icon and destop-database scriptlets
9fcd99b
- Use chrpath to strip rpaths
9fcd99b
9fcd99b
* Fri Feb 28 2014 Orion Poplawski <orion@cora.nwra.com> - 4.2.1-2
9fcd99b
- Add %%check
9fcd99b
9fcd99b
* Wed Feb 26 2014 Orion Poplawski <orion@cora.nwra.com> - 4.2.1-1
9fcd99b
- Update to 4.2.1
9fcd99b
9fcd99b
* Fri Nov 8 2013 Orion Poplawski <orion@cora.nwra.com> - 4.2-3
9fcd99b
- Fix 32bit build
9fcd99b
9fcd99b
* Wed Oct 2 2013 Orion Poplawski <orion@cora.nwra.com> - 4.2-2
9fcd99b
- Use patch to fix up various libdir paths
9fcd99b
- Modify configure to remove rpath
9fcd99b
9fcd99b
* Fri Sep 27 2013 Orion Poplawski <orion@cora.nwra.com> - 4.2-1
9fcd99b
- Initial package