source: projects/specs/trunk/lib/libi/libindi/libindi-vl.spec @ 1597

Revision 1597, 3.7 KB checked in by inagaki, 14 years ago (diff)

updated: libgadu, libindi, ortp, qjson, qimageblitz, shared-desktop-ontologies

Line 
1Name: libindi
2Summary: Instrument Neutral Distributed Interface
3Version: 0.6.2
4Release: 1%{?_dist_release}
5
6Group: System Environment/Libraries
7License: 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
13URL: http://indi.sourceforge.net/
14
15%define majorver 0
16
17Source0: http://downloads.sourceforge.net/indi/%{name}_%{version}.tar.gz
18Patch0: libindi-suffix.patch
19
20Buildroot: %{_tmppath}/%{name}-%{version}-root
21BuildRequires: cmake
22BuildRequires: cfitsio-devel >= 3.03
23BuildRequires: libfli-devel
24BuildRequires: libnova-devel >= 0.12.1
25BuildRequires: zlib-devel
26
27Conflicts: kdeedu3
28
29%description
30INDI is a distributed control protocol designed to operate
31astronomical instrumentation. INDI is small, flexible, easy to parse,
32and scalable. It supports common DCS functions such as remote control,
33data acquisition, monitoring, and a lot more.
34
35
36%package devel
37Summary: Libraries, includes, etc. used to develop an application with %{name}
38Group: Development/Libraries
39Requires: %{name} = %{version}-%{release}
40Provides: libindi-static = %{version}-%{release}
41
42%description devel
43These 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
51mkdir -p %{_target_platform}
52pushd %{_target_platform}
53CFLAGS="${CFLAGS:-%optflags}" \
54CXXFLAGS="${CXXFLAGS:-%optflags}" \
55FFLAGS="${FFLAGS:-%optflags}" \
56%cmake \
57    -DCMAKE_BUILD_TYPE=release \
58    -DDATA_INSTALL_DIR:PATH=%{_datadir} \
59    ..
60popd
61
62make VERBOSE=1 %{?_smp_mflags} -C %{_target_platform}
63
64%install
65rm -fr %{buildroot}
66make install DESTDIR=%{buildroot} -C %{_target_platform}
67
68%clean
69rm -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
Note: See TracBrowser for help on using the repository browser.