auto-import changelog data from minicom-2.00.0-12.src.rpm
Wed Jan 22 2003 Tim Powers <timp@redhat.com> - rebuilt Sat Jan 18 2003 Mike A. Harris <mharris@redhat.com> 2.00.0-11 - Update spec file URL to new homepage (#71894) Mon Dec 02 2002 Tim Powers <timp@redhat.com> 2.00.0-10 - add PreReq coreutils so that we get the ordering right in the install Wed Nov 13 2002 Mike A. Harris <mharris@redhat.com> 2.00.0-9 - Added find_lang macro andlang files to package, also avoiding _unpackaged_files_terminate_build - Added with_desktop_menu_entry macro to disable minicom.desktop by default Tue Oct 08 2002 Mike A. Harris <mharris@redhat.com> 2.00.0-8 - All-arch rebuild - Make /etc/minicom.users config(noreplace)
This commit is contained in:
parent
6c3560db32
commit
1b0dd3cb53
42
minicom.spec
42
minicom.spec
@ -1,15 +1,17 @@
|
|||||||
|
%define with_desktop_menu_entry 0
|
||||||
|
|
||||||
Summary: A text-based modem control and terminal emulation program.
|
Summary: A text-based modem control and terminal emulation program.
|
||||||
Name: minicom
|
Name: minicom
|
||||||
Version: 2.00.0
|
Version: 2.00.0
|
||||||
Release: 6
|
Release: 12
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/Communications
|
Group: Applications/Communications
|
||||||
ExcludeArch: s390 s390x
|
ExcludeArch: s390 s390x
|
||||||
BuildRoot: %{_tmppath}/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
#BuildPrereq: /usr/include/baudboy.h
|
|
||||||
BuildPrereq: lockdev-devel >= 1.0.0-13
|
BuildPrereq: lockdev-devel >= 1.0.0-13
|
||||||
|
PreReq: coreutils
|
||||||
Requires: lockdev
|
Requires: lockdev
|
||||||
URL: http://www.pp.clinet.fi/~walker/minicom.html
|
URL: http://www.netsonic.fi/~walker/minicom.html
|
||||||
|
|
||||||
Source: ftp://metalab.unc.edu/pub/Linux/apps/serialcomm/dialout/minicom-%{version}.src.tar.bz2
|
Source: ftp://metalab.unc.edu/pub/Linux/apps/serialcomm/dialout/minicom-%{version}.src.tar.bz2
|
||||||
Source1: minicom.desktop
|
Source1: minicom.desktop
|
||||||
@ -49,29 +51,53 @@ make
|
|||||||
%install
|
%install
|
||||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/etc
|
||||||
|
%if %{with_desktop_menu_entry}
|
||||||
install -d $RPM_BUILD_ROOT/etc/X11/applnk/Internet
|
install -d $RPM_BUILD_ROOT/etc/X11/applnk/Internet
|
||||||
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/etc/X11/applnk/Internet/minicom.desktop
|
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/etc/X11/applnk/Internet/minicom.desktop
|
||||||
|
%endif
|
||||||
install -m 644 doc/minicom.users $RPM_BUILD_ROOT/etc/minicom.users
|
install -m 644 doc/minicom.users $RPM_BUILD_ROOT/etc/minicom.users
|
||||||
|
|
||||||
|
%find_lang %name
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files -f %name.lang
|
||||||
%files
|
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc doc
|
%doc doc
|
||||||
%attr(0644,root,root) %config /etc/minicom.users
|
#%attr(0644,root,root)
|
||||||
|
%config(noreplace) /etc/minicom.users
|
||||||
# DO NOT MAKE minicom SUID/SGID anything.
|
# DO NOT MAKE minicom SUID/SGID anything.
|
||||||
%attr(0755,root,uucp) %{_bindir}/minicom
|
%attr(0755,root,uucp) %{_bindir}/minicom
|
||||||
%{_bindir}/runscript
|
%{_bindir}/runscript
|
||||||
%{_bindir}/xminicom
|
%{_bindir}/xminicom
|
||||||
%{_bindir}/ascii-xfr
|
%{_bindir}/ascii-xfr
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
#%config(missingok) /etc/X11/applnk/Internet/minicom.desktop
|
%if %{with_desktop_menu_entry}
|
||||||
|
%config(missingok) /etc/X11/applnk/Internet/minicom.desktop
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Sat Jan 18 2003 Mike A. Harris <mharris@redhat.com> 2.00.0-11
|
||||||
|
- Update spec file URL to new homepage (#71894)
|
||||||
|
|
||||||
|
* Mon Dec 2 2002 Tim Powers <timp@redhat.com> 2.00.0-10
|
||||||
|
- add PreReq coreutils so that we get the ordering right in the
|
||||||
|
install
|
||||||
|
|
||||||
|
* Wed Nov 13 2002 Mike A. Harris <mharris@redhat.com> 2.00.0-9
|
||||||
|
- Added find_lang macro andlang files to package, also avoiding
|
||||||
|
_unpackaged_files_terminate_build
|
||||||
|
- Added with_desktop_menu_entry macro to disable minicom.desktop by default
|
||||||
|
|
||||||
|
* Tue Oct 8 2002 Mike A. Harris <mharris@redhat.com> 2.00.0-8
|
||||||
|
- All-arch rebuild
|
||||||
|
- Make /etc/minicom.users config(noreplace)
|
||||||
|
|
||||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||||
- automated rebuild
|
- automated rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user