source: spec/trunk/SPECS/kLIBCum.spec@ 1036

Last change on this file since 1036 was 895, checked in by herwigb, 9 years ago

spec: kLIBCum: Release version 1.0.10-1.

File size: 3.3 KB
Line 
1%define debug_package %{nil}
2
3Summary: kLIBC User Management
4Name: kLIBCum
5Version: 1.0.10
6Release: 1%{?dist}
7License: proprietary
8Group: Applications/System
9URL: http://www.netlabs.org/vxapps
10Vendor: bww bitwise works GmbH
11
12Source: %{name}-%{version}.zip
13BuildRoot: %_tmppath/%name-%version-%release-root
14
15
16%description
17The purpose of this utility is to manage kLIBC users and groups.
18These files are found in %UNIXROOT%\etc and have the following names
19- master.passwd
20- group
21
22These files are syntactically properly maintained and compiled into
23pwd.db and spwd.db using the pwdmkdb.exe utility.
24
25
26%prep
27%setup -n "%{name}-%{version}" -Tc
28unzip -q %{_sourcedir}/%{name}-%{version}.zip
29
30%build
31
32
33%install
34mkdir -p $RPM_BUILD_ROOT%{_bindir}
35cp usr/bin/*.exe $RPM_BUILD_ROOT%{_bindir}
36cp usr/bin/*.EXE $RPM_BUILD_ROOT%{_bindir}
37mkdir -p $RPM_BUILD_ROOT%{_libdir}
38cp usr/lib/*.dll $RPM_BUILD_ROOT%{_libdir}
39mkdir -p $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-%{version}
40cp usr/share/doc/klibcum/readme.txt $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-%{version}
41mkdir -p $RPM_BUILD_ROOT%{_datadir}/os2/lang
42cp usr/share/os2/lang/*.msg $RPM_BUILD_ROOT%{_datadir}/os2/lang
43
44
45%clean
46rm -rf "$RPM_BUILD_ROOT"
47
48%post
49if [ "$1" -ge 1 ]; then # (upon update)
50 %wps_object_delete_all
51fi
52%wps_object_create_begin
53KLIBCUM_FOLDER:WPFolder|kLIBCum|<WP_DESKTOP>|TITLE=kLIBC User Management;
54KLIBCUM_README:WPShadow|Readme|<KLIBCUM_FOLDER>|SHADOWID=((%_defaultdocdir/%{name}-%{version}/readme.txt))
55KLIBCUM_EXE:WPProgram|User Management|<KLIBCUM_FOLDER>|EXENAME=((%_bindir/klibcum.exe));STARTUPDIR=((%_bindir));TITLE=User Management;
56%wps_object_create_end
57
58%postun
59if [ "$1" -eq 0 ]; then # (upon removal)
60 %wps_object_delete_all
61fi
62
63%files
64%defattr(-,root,root,-)
65%_defaultdocdir/%{name}-%{version}/readme.txt
66%_bindir/*.exe
67%_bindir/*.EXE
68%_libdir/*.dll
69%_datadir/os2/lang/*.msg
70
71
72%changelog
73* Fri Nov 18 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.10
74- fix Ticket #7
75- fix minor bugs in user properties page
76- rework and simplify join/leave dialogue
77* Thu Nov 17 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.9-2
78- fix minor bug
79* Thu Nov 17 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.9
80- Limited group editing
81- bigger buttons, new icons
82- fix Ticket #125 (Unix ports)
83- fix new user bug
84- add ignore root shell error warning
85- make debug stick across sessions
86* Tue Nov 15 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.8
87- add functionality to add/remove multiple user from/to groups
88- double click on user open user properties to edit
89* Fri Nov 11 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.7-2
90- fix minor bug
91* Fri Nov 11 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.7-1
92- Add smbusers.exe check, fix missing NLV translations,
93- add NL, IT and RU language files
94* Thu Nov 10 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.6-1
95- Add "Remove user from group" functionality, fix missing NLV translations
96* Fri Nov 04 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.5-1
97- Add some hints, fix wrong hints
98* Thu Oct 27 2016 hb <herwig.bauernfeind@bitwiseworks.com> 1.0.4-1
99- bigger buttons, shortened strings for EN, ES
100* Mon Oct 24 2016 yd <silvan.scherrer@bitwiseworks.com> 1.0.3-1
101- first public version
Note: See TracBrowser for help on using the repository browser.