blob: 06a1cc18f170d7cef553996ef6abb41f0de797f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# Changed by Makefile of cvs.
%define version 0.2
%define name transfugdrake
%define release 1mdk
Summary: A wizard to moves from Windows to Mandrake Linux
Name: %{name}
Version: %{version}
Release: %{release}
Source0: http://people.mandrakesoft.com/~cbelisle/tfd/%{name}-%{version}.tar.bz2
URL: http://people.mandrakesoft.com/~cbelisle/tfd/index.html
#Source1: %{name}16.xpm.bz2
#Source2: %{name}32.xpm.bz2
#Source3: %{name}48.xpm.bz2
License: GPL
Group: System/Configuration/Other
Requires: drakxtools >= 1.1.7, gtk+mdk, perl-GTK, perl-GTK-GdkImlib, usermode, perl-File-NCopy
BuildRoot: %{_tmppath}/%{name}-buildroot
%description
Transfugdrake help you to migrate your mail, documents
and address books from Windows to Mandrake Linux. It can
run as a standalone or embedded wizard.
File copy supports all Windows version.
Address Book migration not implemented yet.
Mail migration work with Outlook Express 4.5 and 5.
Still in ALPHA version
%prep
%setup -q
%build
%configure
%make
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall
#mv ${RPM_BUILD_ROOT}%{_prefix}/X11R6/bin/transfugdrake \
# ${RPM_BUILD_ROOT}%{_prefix}/X11R6/bin/transfugdrake.real
#ln -sf %{_bindir}/consolehelper ${RPM_BUILD_ROOT}%{_prefix}/X11R6/bin/transfugdrake
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps
#cp pam.transfugdrake $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/transfugdrake
cp apps.transfugdrake $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/transfugdrake
#install lang
%{find_lang} %{name}
#install menu
mkdir -p $RPM_BUILD_ROOT%{_menudir}
cat > $RPM_BUILD_ROOT%{_menudir}/transfugdrake << EOF
?package(transfugdrake): \
needs="x11" \
icon="transfugdrake.xpm" \
section="Configuration/Other" \
title="Import files from windows to Linux" \
longtitle="Import files from windows to Linux" \
command="/usr/X11R6/bin/transfugdrake"
EOF
#install menu icon
#mkdir -p $RPM_BUILD_ROOT%{_miconsdir}
#mkdir -p $RPM_BUILD_ROOT%{_liconsdir}
#bzcat %{SOURCE1} > $RPM_BUILD_ROOT%{_miconsdir}/%{name}.xpm
#bzcat %{SOURCE2} > $RPM_BUILD_ROOT%{_iconsdir}/%{name}.xpm
#bzcat %{SOURCE3} > $RPM_BUILD_ROOT%{_liconsdir}/%{name}.xpm
%post
%{update_menus}
%postun
%{clean_menus}
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
%defattr(-,root,root)
%doc README AUTHORS
%doc ChangeLog
%{_prefix}/X11R6/bin/*
%{_bindir}/transfug_oe
%{_menudir}/transfugdrake
#%{_miconsdir}/*.xpm
#%{_iconsdir}/*.xpm
#%{_liconsdir}/*.xpm
#%config(noreplace) %{_sysconfdir}/pam.d/smbdrake
%config(noreplace) %{_sysconfdir}/security/console.apps/transfugdrake
%changelog
* Fri Jan 04 2002 Christian Belisle <cbelisle@mandrakesoft.com> 0.2-1mdk
- Add address book feature.
- Enhance partition chooser page.
- Detect automatically which choices are possible.
- Fix mail import.
- Remake the application logic.
- Add user chooser page.
- Change description in spec.
* Thu Nov 29 2001 Christian Belisle <cbelisle@mandrakesoft.com> 0.1-3mdk
- Updated drakxtools in requires.
- Enhanced and added some features:
* Enhanced windows partition check.
* Enhanced windows documents copy.
* Added address book migration feature.
- Added transfugdrake in /etc/security/console.apps
- Fixed menu entry.
- Changed description.
- Added URL.
* Tue Aug 07 2001 Yves Duret <yduret@mandrakesoft.com> 0.1-2mdk
- build release
- make rpmlint happier
* Mon Jun 11 2001 Yves Duret <yduret@mandrakesoft.com> 0.1-1mdk
- first release, do nothing.
# end of file
|