Compatibility with ORBit2>=2.7.x; new configure option '--with-orbit-line'.
[captive.git] / captive.spec.in
1 # $Id$
2 # rpm package description file for building
3 # Copyright (C) 2002-2003 Jan Kratochvil <project-captive@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 # Temporary cludge before full 'devel' package gets deployed
20 %define _unpackaged_files_terminate_build 0
21
22 Summary: Microsoft Windows platform filesystem access.
23 Name: @PACKAGE@
24 %define release 0
25 Version: @VERSION@
26 Release: %{release}
27 Group: System Environment/Base
28 Packager: Jan Kratochvil <project-captive@jankratochvil.net>
29 Source: http://www.jankratochvil.net/project/captive/dist/@PACKAGE@-@VERSION@.tar.gz
30 Copyright: GPL
31 BuildRoot: /var/tmp/@PACKAGE@-@VERSION@-%{release}-root
32 BuildRequires: ORBit2-devel
33 Requires: ORBit2
34 # Due to --with-orbit-line=linc
35 Conflicts: ORBit2 >= 2.7.0
36 BuildRequires: openssl-devel
37 Requires: openssl
38 BuildRequires: gnome-vfs2-devel
39 Requires: gnome-vfs2
40 BuildRequires: libxml2-devel
41 Requires: libxml2
42 BuildRequires: popt
43 Requires: popt
44 BuildRequires: glib2-devel
45 Requires: glib2
46 BuildRequires: readline-devel
47 Requires: readline
48 BuildRequires: gcc >= 3.0
49
50 %description
51 Existing binary Microsoft Windows file system drivers were exploited
52 for accessing drives with possibly proprietary file system data structures.
53 Open file system API is provided to access these file system drivers.
54 Microsoft Windows system components required by these drivers
55 were analyzed and successfuly emulated in the GNU/Linux operating system.
56
57 The implementation allows applications running under the GNU/Linux operating
58 system to access NTFS drives. File system driver compatibility with VFAT,
59 ISO9660 and EXT2 is also provided.
60
61 %package lufs
62 Summary: LUFS module for Microsoft Windows platform filesystem access.
63 Group: System Environment/Base
64 Requires: captive = %{PACKAGE_VERSION}
65 BuildRequires: lufs >= 0.9.6-1captive
66 Requires: lufs >= 0.9.6-1captive
67
68 %description lufs
69 LUFS is a hybrid userspace filesystem framework.
70
71 Package provides LUFS filesystem module to access Microsoft Windows platform
72 filesystems such as NTFS. Use filesystem type 'captive-ntfs' for NTFS disks.
73
74 %package install
75 Summary: Instant installer for Microsoft Windows platform filesystem access.
76 Group: System Environment/Base
77 Requires: captive-lufs = %{PACKAGE_VERSION}
78 # Versions before 1.8.0 were too buggy
79 BuildRequires: ntfsprogs-devel >= 1.8.0
80 # 'PreReq' needed for Mandrake-9.1 otherwise '%preun install' fails
81 # during 'rpm -e ntfsprogs captive-install':
82 PreReq: ntfsprogs >= 1.8.0
83 Requires: ntfsprogs >= 1.8.0
84 Requires: ntfsprogs-gnomevfs
85 Requires: gnome-vfs-httpcaptive
86 BuildRequires: gnome-vfs2-devel
87 Requires: gnome-vfs2
88 BuildRequires: libgnomeui-devel
89 Requires: libgnomeui
90 BuildRequires: readline-devel
91 Requires: readline
92 BuildRequires: libxml2-devel >= 2.4.29
93 Requires: libxml2 >= 2.4.29
94
95 %description install
96 Package provides easy enough unattended installation of Microsoft Windows
97 platform filesystem access. Installer finds available NTFS partitions and
98 tries to acquire needed Microsoft Windows filesystem driver files.
99
100 You may need to run 'captive-install-acquire' to answer several questions.
101 NTFS disks will become mount(8)able at directories: /mnt/captive-VOLUME_NAME
102
103 #% %package devel
104 #% Summary: Microsoft Windows platform filesystem access development support.
105 #% Group: Development/System
106 #% Requires: surprise = %{PACKAGE_VERSION}
107 #% 
108 #% %description devel
109 #% Development package containing libraries for static linking together with
110 #% header files needed for any linking.
111 #% 
112 #% Microsoft Windows platform filesystem access.
113 #% TODO
114
115 %prep
116 %setup
117
118 %build
119 # Never disable debug for captive, see FAQ
120 #       "How to check valid input arguments? Invalid processing state assumptions?"
121 %configure \
122                 --enable-shared --disable-static \
123                 --with-readline \
124                 --disable-bug-replay \
125                 --enable-lufs \
126                 --enable-install-pkg \
127                 --enable-sandbox-setuid=@PACKAGE@ \
128                 --enable-sandbox-setgid=@PACKAGE@ \
129                 --enable-sandbox-chroot=%{_var}/lib/@PACKAGE@ \
130                 --enable-man-pages \
131                 --enable-sbin-mountdir=/sbin \
132                 --enable-sbin-mount-fs=ntfs:fastfat:cdfs:ext2fsd \
133                 --disable-gtk-doc \
134                 --with-orbit-line=linc
135 make
136
137 %install
138 make DESTDIR=$RPM_BUILD_ROOT install-strip
139
140 %clean
141 rm -rf $RPM_BUILD_ROOT
142
143 %post
144 /sbin/ldconfig
145 /usr/sbin/useradd -c "Captive Sandbox" -s /sbin/nologin -r -d %{_var}/lib/@PACKAGE@ captive 2>/dev/null || true
146
147 %postun
148 /sbin/ldconfig
149 # Remove stale sandbox chroot directories owned by 'captive.captive':
150 rm -rf %{_var}/lib/@PACKAGE@/sandbox-server-*
151
152 %files
153 %defattr(-,root,root)
154 %doc README NEWS AUTHORS TODO
155 %{_libdir}/lib@PACKAGE@-@VERSION@.so
156 %attr(644,root,root) %{_mandir}/man?/@PACKAGE@.*
157 %{_libdir}/gnome-vfs-2.0/modules/lib@PACKAGE@-gnomevfs-@VERSION@.so
158 %{_libdir}/gnome-vfs-2.0/modules/lib@PACKAGE@-gnomevfs.so
159 %{_bindir}/@PACKAGE@-cmdline
160 %attr(644,root,root) %{_mandir}/man?/@PACKAGE@-cmdline.*
161 %attr(4755,root,root) %{_sbindir}/@PACKAGE@-sandbox-server
162 %attr(644,root,root) %{_mandir}/man?/@PACKAGE@-sandbox-server.*
163 %config %{_sysconfdir}/gnome-vfs-2.0/modules/@PACKAGE@.conf
164 %{_datadir}/locale/*/LC_MESSAGES/@PACKAGE@.mo
165 %attr(755,root,root) %{_var}/lib/@PACKAGE@
166 %attr(1777,root,root) %{_var}/lib/@PACKAGE@/tmp
167 %attr(644,root,root) %{_var}/lib/@PACKAGE@/*.sys
168
169 %files lufs
170 %defattr(-,root,root)
171 %{_libdir}/liblufs-@PACKAGE@fs-@VERSION@.so
172 %{_libdir}/liblufs-@PACKAGE@fs.so
173 %attr(644,root,root) %{_mandir}/man?/lufs-@PACKAGE@fs.*
174 /sbin/mount.@PACKAGE@
175 /sbin/mount.@PACKAGE@-*
176 %attr(644,root,root) %{_mandir}/man?/mount.@PACKAGE@.*
177
178 %post install
179 %{_sbindir}/captive-install-fstab --add
180 %{_sbindir}/captive-install-acquire --text --scan-disks-quick
181
182 %preun install
183 %{_sbindir}/captive-install-fstab --remove
184
185 %files install
186 %defattr(-,root,root)
187 %config %{_sysconfdir}/w32-mod-id.captivemodid.xml
188 %{_sbindir}/captive-install-fstab
189 %attr(644,root,root) %{_mandir}/man?/captive-install-fstab.*
190 %{_sbindir}/captive-install-acquire
191 %attr(644,root,root) %{_mandir}/man?/captive-install-acquire.*
192
193 # %files devel
194 # %defattr(-,root,root)
195 # %doc ChangeLog
196 # /usr/include/@PACKAGE@
197 # /usr/share/aclocal/*
198 # %{_libdir}/gnome-vfs-2.0/modules/libcaptive-gnomevfs.la
199 # /usr/lib/*.a
200 # /usr/lib/*.la
201 # ###for --disable-shared/(--enable-static-link disable):
202 # /usr/lib/*[a-z].so