| 1 | Name: libindi |
|---|
| 2 | Summary: Instrument Neutral Distributed Interface |
|---|
| 3 | Version: 0.6.2 |
|---|
| 4 | Release: 1%{?_dist_release} |
|---|
| 5 | |
|---|
| 6 | Group: System Environment/Libraries |
|---|
| 7 | License: LGPLv2+ and GPLv2+ |
|---|
| 8 | # The code is LGPLv2+ except: |
|---|
| 9 | # some files for v4l2 conversion under libs/webcam are GPLv2+ |
|---|
| 10 | # drivers/video/stvdriver (indi_stv driver) appears to contain GPL code |
|---|
| 11 | # upstream bug https://sourceforge.net/tracker2/?func=detail&aid=2572902&group_id=90275&atid=593019 |
|---|
| 12 | |
|---|
| 13 | URL: http://indi.sourceforge.net/ |
|---|
| 14 | |
|---|
| 15 | %define majorver 0 |
|---|
| 16 | |
|---|
| 17 | Source0: http://downloads.sourceforge.net/indi/%{name}_%{version}.tar.gz |
|---|
| 18 | Patch0: libindi-suffix.patch |
|---|
| 19 | |
|---|
| 20 | Buildroot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 21 | BuildRequires: cmake |
|---|
| 22 | BuildRequires: cfitsio-devel >= 3.03 |
|---|
| 23 | BuildRequires: libfli-devel |
|---|
| 24 | BuildRequires: libnova-devel >= 0.12.1 |
|---|
| 25 | BuildRequires: zlib-devel |
|---|
| 26 | |
|---|
| 27 | Conflicts: kdeedu3 |
|---|
| 28 | |
|---|
| 29 | %description |
|---|
| 30 | INDI is a distributed control protocol designed to operate |
|---|
| 31 | astronomical instrumentation. INDI is small, flexible, easy to parse, |
|---|
| 32 | and scalable. It supports common DCS functions such as remote control, |
|---|
| 33 | data acquisition, monitoring, and a lot more. |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | %package devel |
|---|
| 37 | Summary: Libraries, includes, etc. used to develop an application with %{name} |
|---|
| 38 | Group: Development/Libraries |
|---|
| 39 | Requires: %{name} = %{version}-%{release} |
|---|
| 40 | Provides: libindi-static = %{version}-%{release} |
|---|
| 41 | |
|---|
| 42 | %description devel |
|---|
| 43 | These are the header files needed to develop a %{name} application |
|---|
| 44 | |
|---|
| 45 | %prep |
|---|
| 46 | %setup -q -n %{name}-%{version} |
|---|
| 47 | %patch0 -p1 |
|---|
| 48 | #patch1 -p1 |
|---|
| 49 | |
|---|
| 50 | %build |
|---|
| 51 | mkdir -p %{_target_platform} |
|---|
| 52 | pushd %{_target_platform} |
|---|
| 53 | CFLAGS="${CFLAGS:-%optflags}" \ |
|---|
| 54 | CXXFLAGS="${CXXFLAGS:-%optflags}" \ |
|---|
| 55 | FFLAGS="${FFLAGS:-%optflags}" \ |
|---|
| 56 | %cmake \ |
|---|
| 57 | -DCMAKE_BUILD_TYPE=release \ |
|---|
| 58 | -DDATA_INSTALL_DIR:PATH=%{_datadir} \ |
|---|
| 59 | .. |
|---|
| 60 | popd |
|---|
| 61 | |
|---|
| 62 | make VERBOSE=1 %{?_smp_mflags} -C %{_target_platform} |
|---|
| 63 | |
|---|
| 64 | %install |
|---|
| 65 | rm -fr %{buildroot} |
|---|
| 66 | make install DESTDIR=%{buildroot} -C %{_target_platform} |
|---|
| 67 | |
|---|
| 68 | %clean |
|---|
| 69 | rm -fr %{buildroot} |
|---|
| 70 | |
|---|
| 71 | %post -p /sbin/ldconfig |
|---|
| 72 | |
|---|
| 73 | %postun -p /sbin/ldconfig |
|---|
| 74 | |
|---|
| 75 | %files |
|---|
| 76 | %defattr(-,root,root,-) |
|---|
| 77 | %doc AUTHORS ChangeLog COPYING.LIB LICENSE README README.drivers README.robofocus |
|---|
| 78 | %{_bindir}/* |
|---|
| 79 | %{_libdir}/*.so.* |
|---|
| 80 | %{_datadir}/indi |
|---|
| 81 | |
|---|
| 82 | %files devel |
|---|
| 83 | %defattr(-,root,root,-) |
|---|
| 84 | %doc README COPYING.LIB LICENSE |
|---|
| 85 | %{_includedir}/* |
|---|
| 86 | %{_libdir}/*.so |
|---|
| 87 | %{_libdir}/*.a |
|---|
| 88 | %{_libdir}/pkgconfig/*.pc |
|---|
| 89 | |
|---|
| 90 | %changelog |
|---|
| 91 | * Tue Aug 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.6.2-1 |
|---|
| 92 | - new upstream release |
|---|
| 93 | - updated Patch0 |
|---|
| 94 | |
|---|
| 95 | * Wed Jul 7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.6-12 |
|---|
| 96 | - added Conflicts: kdeedu3 |
|---|
| 97 | |
|---|
| 98 | * Sat Apr 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.6-11 |
|---|
| 99 | - rebuilt with new toolchain and libnova-0.13 |
|---|
| 100 | |
|---|
| 101 | * Sat Sep 05 2009 NAKAMURA Kenta <kenta@vinelinux.org> - 0.6-10 |
|---|
| 102 | - use %%cmake macro |
|---|
| 103 | |
|---|
| 104 | * Sun Aug 30 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.6-9 |
|---|
| 105 | - Inisital build for Vine Linux |
|---|
| 106 | |
|---|
| 107 | * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-8 |
|---|
| 108 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
|---|
| 109 | |
|---|
| 110 | * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-7 |
|---|
| 111 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
|---|
| 112 | |
|---|
| 113 | * Wed Feb 18 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.6-6 |
|---|
| 114 | - Provides libindi-static |
|---|
| 115 | |
|---|
| 116 | * Tue Feb 17 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.6-5 |
|---|
| 117 | - Need to provide the static library libindidriver.a to build indi-apogee |
|---|
| 118 | |
|---|
| 119 | * Sat Feb 14 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.6-4 |
|---|
| 120 | - Fixed patch to find cfitsio |
|---|
| 121 | |
|---|
| 122 | * Sat Feb 14 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.6-3 |
|---|
| 123 | - Patch to detect cfitsio in all architectures |
|---|
| 124 | |
|---|
| 125 | * Fri Feb 06 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.6-2 |
|---|
| 126 | - Commands (rm, make) instead of macros |
|---|
| 127 | - Upstream bug about licenses (GPLv2 missing) |
|---|
| 128 | - Upstream bug about libindi calling exit |
|---|
| 129 | |
|---|
| 130 | * Mon Jan 28 2009 Sergio Pascual <sergiopr at fedoraproject.org> - 0.6-1 |
|---|
| 131 | - First version |
|---|