--- star-1.5final.orig/libfind/find.c +++ star-1.5final/libfind/find.c @@ -1730,7 +1730,7 @@ #endif av[ac] = NULL; /* -exec {} \; is not NULL terminated */ - fexecve(av[0], state->std[0], state->std[1], state->std[2], + star_fexecve(av[0], state->std[0], state->std[1], state->std[2], av, state->env); #ifdef PLUS_DEBUG error("argsize %d\n", --- star-1.5final.orig/lib/libschily-mapvers +++ star-1.5final/lib/libschily-mapvers @@ -77,7 +77,7 @@ fexecl; fexecle; fexecv; - fexecve; + star_fexecve; ffileread; ffilewrite; fgetline; @@ -123,7 +123,7 @@ geterrno; getfiles; getfp; - getline; + star_getline; getmainfp; #getstr; #handlecond; --- star-1.5final.orig/lib/fexec.c +++ star-1.5final/lib/fexec.c @@ -165,7 +165,7 @@ } while (p != NULL); va_end(args); - ret = fexecve(name, in, out, err, av, env); + ret = star_fexecve(name, in, out, err, av, env); if (av != xav) free(av); return (ret); @@ -179,11 +179,11 @@ char *av[]; { av[ac] = NULL; /* force list to be null terminated */ - return (fexecve(name, in, out, err, av, environ)); + return (star_fexecve(name, in, out, err, av, environ)); } EXPORT int -fexecve(name, in, out, err, av, env) +star_fexecve(name, in, out, err, av, env) const char *name; FILE *in, *out, *err; char * const av[], * const env[]; --- star-1.5final.orig/lib/libschily-mapvers.orig +++ star-1.5final/lib/libschily-mapvers.orig @@ -51,7 +51,7 @@ fexecl; fexecle; fexecv; - fexecve; + star_fexecve; ffileread; ffilewrite; fgetline; @@ -98,7 +98,7 @@ geterrno; getfiles; getfp; - getline; + star_getline; getmainfp; getstr; handlecond; --- star-1.5final.orig/lib/stdio/fgetline.c +++ star-1.5final/lib/stdio/fgetline.c @@ -61,7 +61,7 @@ } EXPORT int -getline(buf, len) +star_getline(buf, len) char *buf; int len; { --- star-1.5final.orig/man/man1/match.1 +++ star-1.5final/man/man1/match.1 @@ -13,7 +13,7 @@ .if n .ds o oe .if n .ds u ue .if n .ds s sz -.TH MATCH 1L "15. Juli 1988" "J\*org Schilling" "Schily\'s USER COMMANDS" +.TH MATCH 1 "15. Juli 1988" "J\*org Schilling" "Schily\'s USER COMMANDS" .SH NAME match \- searches for patterns in files .SH SYNOPSIS --- star-1.5final.orig/debian/docs +++ star-1.5final/debian/docs @@ -0,0 +1,12 @@ +star/README +star/README.crash +testscripts/README.largefiles +star/README.otherbugs +star/README.pattern +TODO +READMEs/README.linux +star/README.ACL +star/README.mtio +star/README.pax +star/README.posix-2001 +star/STARvsGNUTAR --- star-1.5final.orig/debian/README.Debian +++ star-1.5final/debian/README.Debian @@ -0,0 +1,8 @@ +star for Debian +--------------- + +mt and rmt are installed as mt-star and rmt-star to avoid conflicts with GNU +tar and cpio (although star can pretty much replace those, I'd prefer ability +to use both at once). + + -- Paweł Więcek , Tue, 29 Jan 2002 12:10:43 +0100 --- star-1.5final.orig/debian/rules +++ star-1.5final/debian/rules @@ -0,0 +1,98 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +VERSION=$(shell head -1 debian/changelog | sed -e 's/^.* (\(.*\)-[0-9]\+) .*$$/\1/') + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) all INS_BASE=$(CURDIR)/debian/star + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + ./.clean + -rm star/star_fat.c # created during build and NOT cleaned... + + dh_clean -Xlibschily-mapvers.orig + +install: build + dh_testdir + dh_testroot + dh_clean -k -Xlibschily-mapvers.orig + dh_installdirs + + # Add here commands to install the package into debian/star. + $(MAKE) install INS_BASE=$(CURDIR)/debian/star + # fix the mess star's make install creates: + rm $(CURDIR)/debian/star/bin/tar $(CURDIR)/debian/star/bin/ustar + rm $(CURDIR)/debian/star/bin/gnutar $(CURDIR)/debian/star/bin/suntar + rm $(CURDIR)/debian/star/bin/mt + mv $(CURDIR)/debian/star/bin/smt $(CURDIR)/debian/star/bin/mt-star + mv $(CURDIR)/debian/star/sbin/rmt $(CURDIR)/debian/star/sbin/rmt-star + rm $(CURDIR)/debian/star/man/man1/gnutar.1 $(CURDIR)/debian/star/man/man1/suntar.1 + mv $(CURDIR)/debian/star/man/man1/smt.1 $(CURDIR)/debian/star/usr/share/man/man1/mt-star.1 + mv $(CURDIR)/debian/star/man/man1/rmt.1 $(CURDIR)/debian/star/usr/share/man/man8/rmt-star.8 + mv $(CURDIR)/debian/star/man/man1/* $(CURDIR)/debian/star/usr/share/man/man1 + mv $(CURDIR)/debian/star/man/man5/star.5 $(CURDIR)/debian/star/usr/share/man/man5 + rm -rf $(CURDIR)/debian/star/include $(CURDIR)/debian/star/lib $(CURDIR)/debian/star/man + mv $(CURDIR)/debian/star/share/doc/rmt $(CURDIR)/debian/star/usr/share/doc/star/examples + rm -rf $(CURDIR)/debian/star/share + -cp AN-$(VERSION) $(CURDIR)/debian/star/usr/share/doc/star + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- star-1.5final.orig/debian/postinst +++ star-1.5final/debian/postinst @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "$1" = "configure" -o "$1" = "abort-upgrade" ] ; then + update-alternatives --install /bin/mt mt /bin/mt-star 10 --slave /usr/share/man/man1/mt.1.gz mt.1.gz /usr/share/man/man1/mt-star.1.gz + update-alternatives --install /usr/sbin/rmt rmt /sbin/rmt-star 10 --slave /usr/share/man/man8/rmt.8.gz rmt.8.gz /usr/share/man/man8/rmt-star.8.gz +fi + +#DEBHELPER# + --- star-1.5final.orig/debian/prerm +++ star-1.5final/debian/prerm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ $1 != "upgrade" ]; then + update-alternatives --remove mt /bin/mt-star + update-alternatives --remove rmt /sbin/rmt-star +fi + +#DEBHELPER# + --- star-1.5final.orig/debian/changelog +++ star-1.5final/debian/changelog @@ -0,0 +1,342 @@ +star (1.5final-2ubuntu2) lucid; urgency=low + + * include/schily/schily.h, lib/fexec.c, lib/libschily-mapvers, + lib/libschily-mapvers.orig, libfind/find.c, lib/stdio/fgetline.c: + fix FTBFS from conflicting getline() and fexecve(). + * star_buffer.c: fix pointer rounding error with newer gcc. (LP: #237468) + + -- Marc Deslauriers Sun, 28 Mar 2010 20:08:08 -0400 + +star (1.5final-2ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + - star/star.1: Don't reference non-existing manpages. + + -- Nicolas Valcárcel Sun, 17 Aug 2008 20:31:21 -0500 + +star (1.5final-2) unstable; urgency=low + + * Applied patch to upstream's buildprocess to make it recognize modern ARM + CPU-s. + + -- Paweł Więcek Tue, 01 Jul 2008 21:41:27 +0200 + +star (1.5final-1ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + - star/star.1: Don't reference non-existing manpages. + - debian/control: Adhere to DebianMainterField. + * Dropped debian/rules: + - Remove bashisms. + + -- Chuck Short Fri, 20 Jun 2008 14:29:32 -0500 + +star (1.5final-1) unstable; urgency=low + + * New upstream version (closes: #354576, #348315, #365476, #365321, #416270, + #454745, #426898, #475918, #459956, #381783, #343087) + * Dropped smake (no longer in Debian), use GNU make (closes: #469767, + #470342) + * Additional cleanup of installed files to conform to FHS and to be + internally consistent (eg. manpage headers vs manpage locations). + * Applied patch from Michael Prokop to fix behavior during cleaning + (closes: #465511) + * Various cleanups here and there. + * Fixed rmt manpage path in update-alternatives invocation (closes: #413707) + * Use rmt-star as alternative for rmt, not mt (closes: #333413) + + -- Paweł Więcek Tue, 17 Jun 2008 22:35:33 +0200 + +star (1.5a67-1.2) unstable; urgency=low + + * Non-maintainer upload. + * debian/rules: Fix bashism. (Closes: #459162) + + -- Marc 'HE' Brockschmidt Mon, 28 Jan 2008 00:23:36 +0100 + +star (1.5a67-1.1ubuntu1) gutsy; urgency=low + + * Merge with Debian unstable. Remaining changes: + + star/star.1: Don't reference non-existing manpages. + + debian/rules: Remove bashism. + + debian/control: Adhere to DebianMaintainerField. + + -- Michael Bienia Sat, 01 Sep 2007 16:40:42 +0200 + +star (1.5a67-1.1) unstable; urgency=high + + * Non-maintainer upload by testing security team. + * Fix directory traversal vulnerability in extract.c (CVE-2007-4134) (Closes: #440100). + + -- Nico Golde Fri, 31 Aug 2007 14:17:39 +0200 + +star (1.5a67-1ubuntu1) gutsy; urgency=low + + * Edit manpage (LP: #83271) + * Correction in debian/rules: removed bashisms (thanks to mr_pouit) + * debian/control: Adhere to DebianMaintainerField. + + -- Hari Seldon (illovae) Fri, 4 May 2007 13:35:06 +0200 + +star (1.5a67-1) unstable; urgency=low + + * New upstream version + * Includes a fix to time restoration function (closes: #321778) + + -- Pawel Wiecek Thu, 22 Sep 2005 20:57:32 +0200 + +star (1.5a60-2) unstable; urgency=low + + * Fixed a horrible mess upstream made in star_fat.c (with great thanks to + smake's "feature" of not stopping build process on compilation errors) + (closes: #310662) + + -- Pawel Wiecek Tue, 31 May 2005 10:42:10 +0200 + +star (1.5a60-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Mon, 23 May 2005 09:19:44 +0200 + +star (1.5a59-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Mon, 16 May 2005 22:29:14 +0200 + +star (1.5a57-1) unstable; urgency=low + + * New upstream version + * Include latest AN-* file in package (closes: #291295) + * Changed debian/copyright because upstream licence changed from GPL to CDDL + + -- Pawel Wiecek Tue, 15 Feb 2005 22:21:12 +0100 + +star (1.5a55-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Tue, 18 Jan 2005 21:29:16 +0100 + +star (1.5a54-1) unstable; urgency=low + + * New upstream version + * Fixed location of mt-star manpage (closes: #289085) + + -- Pawel Wiecek Sat, 8 Jan 2005 18:02:27 +0100 + +star (1.5a51-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Mon, 11 Oct 2004 10:34:05 +0200 + +star (1.5a49-1) unstable; urgency=high + + * New upstream version (closes: #271266, #271496, #271908, #273844) + * Moved binaries from /usr/{bin,sbin} to /{bin,sbin} (closes: #271263) + + -- Pawel Wiecek Sun, 3 Oct 2004 21:00:51 +0200 + +star (1.5a46-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Fri, 27 Aug 2004 21:51:55 +0200 + +star (1.5a40-1) unstable; urgency=low + + * New upstream version + * Renamed match.1 to star-match.1 and properly updated star.1 + (closes: #241057) + * Added patch from Andreas Jochens to fix building on amd64 + (closes: #253313) + + -- Pawel Wiecek Tue, 8 Jun 2004 22:52:45 +0200 + +star (1.5a39-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Thu, 25 Mar 2004 22:59:06 +0100 + +star (1.5a36-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Thu, 12 Feb 2004 13:11:25 +0100 + +star (1.5a35-1) unstable; urgency=low + + * New upstream version, including fix for #223206, as NMUed + + -- Pawel Wiecek Tue, 6 Jan 2004 13:37:18 +0100 + +star (1.5a32-1.1) unstable; urgency=low + + * Non-maintainer upload + * debian/control: Build-Depends: e2fslibs-dev + * star/{fflags,star_unix}.c: #include instead of Linux + headers, thanks to Daniel Schepler (Closes: #223206) + + -- Roland Stigge Mon, 22 Dec 2003 20:52:45 +0100 + +star (1.5a32-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Thu, 23 Oct 2003 22:36:54 +0200 + +star (1.5a31-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Sat, 18 Oct 2003 21:31:28 +0200 + +star (1.5a30-1) unstable; urgency=low + + * New upstream version (closes: #209353) + * Switched to smake (closes: #185382, #170106) + * Updated standards version (no changes required) + * Included more documentation in package + + -- Pawel Wiecek Tue, 14 Oct 2003 13:49:31 +0200 + +star (1.5a14-2) unstable; urgency=high + + * Updated standards version + * Fixed a typo in copyright file + * Updated copyright file with current download URL + * New upstream version creates slightly different files than previous ones. + This caused some incorrect symlinks to be created insode the package. + Fixed that (closes: #190415, #190582) + * Moved manpage for rmt-star to section 8 where it really belongs. + + -- Pawel Wiecek Thu, 24 Apr 2003 21:55:47 +0200 + +star (1.5a14-1) unstable; urgency=low + + * New upstream version (closes: #170815) + * Added mt-star and rmt-star to alternatives (closes: #168688) + * Fixed POSIX spelling in description (closes: #174196) + * Added build-dependency on libattr (closes: #188070) + * More fixes to come... + + -- Pawel Wiecek Wed, 23 Apr 2003 15:32:33 +0200 + +star (1.5a09-1.1) unstable; urgency=low + + * NMU + * Fix build-deps (Closes: #170815) + + -- David Schleef Sat, 15 Mar 2003 19:27:56 -0800 + +star (1.5a09-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Tue, 26 Nov 2002 13:55:18 +0100 + +star (1.5a08-2) unstable; urgency=low + + * Added project's webpage URL to copyright file (closes: #153676) + * Added reference to GPL-2 in /usr/share/common-licenses to copyright file + + -- Pawel Wiecek Wed, 30 Oct 2002 13:37:14 +0100 + +star (1.5a08-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Mon, 14 Oct 2002 12:59:46 +0200 + +star (1.5a06-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Wed, 14 Aug 2002 10:21:37 +0200 + +star (1.5a02-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Fri, 14 Jun 2002 11:43:21 +0200 + +star (1.4final-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Fri, 24 May 2002 13:33:56 +0200 + +star (1.4a26-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Tue, 14 May 2002 12:34:27 +0200 + +star (1.4a24-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Fri, 10 May 2002 12:21:15 +0200 + +star (1.4a23-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Fri, 26 Apr 2002 15:40:24 +0200 + +star (1.4a22-1) unstable; urgency=low + + * New upstream version + * Added symlink for rules file so star compiles on ia64 (closes: #142254) + + -- Pawel Wiecek Tue, 23 Apr 2002 11:24:06 +0200 + +star (1.4a21-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Wed, 27 Mar 2002 22:15:52 +0100 + +star (1.4a20-1) unstable; urgency=low + + * New upstream version + * Now compiled with ACL support as we finally have it in the distribution! + + -- Pawel Wiecek Tue, 12 Mar 2002 15:21:24 +0100 + +star (1.4a19-1) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Tue, 5 Mar 2002 13:27:47 +0100 + +star (1.4a18) unstable; urgency=low + + * New upstream version + + -- Pawel Wiecek Wed, 27 Feb 2002 12:58:00 +0100 + +star (1.4a17-3) unstable; urgency=low + + * Additional fixes to installation code as I've put manuals into some + *weird* location (closes: #133774) + + -- Pawel Wiecek Wed, 13 Feb 2002 18:21:45 +0100 + +star (1.4a17-2) unstable; urgency=low + + * Fixed the horribly broken installation code (closes: #133154) + + -- Pawel Wiecek Mon, 11 Feb 2002 13:04:31 +0100 + +star (1.4a17-1) unstable; urgency=low + + * Initial Release (closes: #78531). + * Second upload as I lacked conciense to fill in copyright file... Lame + me... + + -- Pawel Wiecek Fri, 1 Feb 2002 23:40:56 +0100 + --- star-1.5final.orig/debian/compat +++ star-1.5final/debian/compat @@ -0,0 +1 @@ +5 --- star-1.5final.orig/debian/copyright +++ star-1.5final/debian/copyright @@ -0,0 +1,391 @@ +This package was debianized by Paweł Więcek on +Tue, 29 Jan 2002 12:10:43 +0100. + +It was downloaded from ftp://ftp.berlios.de/pub/star/ + +Project's webpage: +http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/star.html + +Upstream Author: Joerg Schilling + +Copyright: + Copyright (c) 1985, 88-90, 92-96, 98, 99, 2000-2008 J. Schilling + +License: + +COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 + +1. Definitions. + + 1.1. "Contributor" means each individual or entity that creates + or contributes to the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Software, prior Modifications used by a Contributor (if any), + and the Modifications made by that particular Contributor. + + 1.3. "Covered Software" means (a) the Original Software, or (b) + Modifications, or (c) the combination of files containing + Original Software with files containing Modifications, in + each case including portions thereof. + + 1.4. "Executable" means the Covered Software in any form other + than Source Code. + + 1.5. "Initial Developer" means the individual or entity that first + makes Original Software available under this License. + + 1.6. "Larger Work" means a work which combines Covered Software or + portions thereof with code not governed by the terms of this + License. + + 1.7. "License" means this document. + + 1.8. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed + herein. + + 1.9. "Modifications" means the Source Code and Executable form of + any of the following: + + A. Any file that results from an addition to, deletion from or + modification of the contents of a file containing Original + Software or previous Modifications; + + B. Any new file that contains any part of the Original + Software or previous Modifications; or + + C. Any new file that is contributed or otherwise made + available under the terms of this License. + + 1.10. "Original Software" means the Source Code and Executable + form of computer software code that is originally released + under this License. + + 1.11. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, + process, and apparatus claims, in any patent Licensable by + grantor. + + 1.12. "Source Code" means (a) the common form of computer software + code in which modifications are made and (b) associated + documentation included in or with such code. + + 1.13. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms + of, this License. For legal entities, "You" includes any + entity which controls, is controlled by, or is under common + control with You. For purposes of this definition, + "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty + percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants. + + 2.1. The Initial Developer Grant. + + Conditioned upon Your compliance with Section 3.1 below and + subject to third party intellectual property claims, the Initial + Developer hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer, to use, + reproduce, modify, display, perform, sublicense and + distribute the Original Software (or portions thereof), + with or without Modifications, and/or as part of a Larger + Work; and + + (b) under Patent Claims infringed by the making, using or + selling of Original Software, to make, have made, use, + practice, sell, and offer for sale, and/or otherwise + dispose of the Original Software (or portions thereof). + + (c) The licenses granted in Sections 2.1(a) and (b) are + effective on the date Initial Developer first distributes + or otherwise makes the Original Software available to a + third party under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: (1) for code that You delete from the Original + Software, or (2) for infringements caused by: (i) the + modification of the Original Software, or (ii) the + combination of the Original Software with other software + or devices. + + 2.2. Contributor Grant. + + Conditioned upon Your compliance with Section 3.1 below and + subject to third party intellectual property claims, each + Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor to use, reproduce, + modify, display, perform, sublicense and distribute the + Modifications created by such Contributor (or portions + thereof), either on an unmodified basis, with other + Modifications, as Covered Software and/or as part of a + Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either + alone and/or in combination with its Contributor Version + (or portions of such combination), to make, use, sell, + offer for sale, have made, and/or otherwise dispose of: + (1) Modifications made by that Contributor (or portions + thereof); and (2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions + of such combination). + + (c) The licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first distributes or + otherwise makes the Modifications available to a third + party. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: (1) for any code that Contributor has deleted + from the Contributor Version; (2) for infringements caused + by: (i) third party modifications of Contributor Version, + or (ii) the combination of Modifications made by that + Contributor with other software (except as part of the + Contributor Version) or other devices; or (3) under Patent + Claims infringed by Covered Software in the absence of + Modifications made by that Contributor. + +3. Distribution Obligations. + + 3.1. Availability of Source Code. + + Any Covered Software that You distribute or otherwise make + available in Executable form must also be made available in Source + Code form and that Source Code form must be distributed only under + the terms of this License. You must include a copy of this + License with every copy of the Source Code form of the Covered + Software You distribute or otherwise make available. You must + inform recipients of any such Covered Software in Executable form + as to how they can obtain such Covered Software in Source Code + form in a reasonable manner on or through a medium customarily + used for software exchange. + + 3.2. Modifications. + + The Modifications that You create or to which You contribute are + governed by the terms of this License. You represent that You + believe Your Modifications are Your original creation(s) and/or + You have sufficient rights to grant the rights conveyed by this + License. + + 3.3. Required Notices. + + You must include a notice in each of Your Modifications that + identifies You as the Contributor of the Modification. You may + not remove or alter any copyright, patent or trademark notices + contained within the Covered Software, or any notices of licensing + or any descriptive text giving attribution to any Contributor or + the Initial Developer. + + 3.4. Application of Additional Terms. + + You may not offer or impose any terms on any Covered Software in + Source Code form that alters or restricts the applicable version + of this License or the recipients' rights hereunder. You may + choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of + Covered Software. However, you may do so only on Your own behalf, + and not on behalf of the Initial Developer or any Contributor. + You must make it absolutely clear that any such warranty, support, + indemnity or liability obligation is offered by You alone, and You + hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or + such Contributor as a result of warranty, support, indemnity or + liability terms You offer. + + 3.5. Distribution of Executable Versions. + + You may distribute the Executable form of the Covered Software + under the terms of this License or under the terms of a license of + Your choice, which may contain terms different from this License, + provided that You are in compliance with the terms of this License + and that the license for the Executable form does not attempt to + limit or alter the recipient's rights in the Source Code form from + the rights set forth in this License. If You distribute the + Covered Software in Executable form under a different license, You + must make it absolutely clear that any terms which differ from + this License are offered by You alone, not by the Initial + Developer or Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred + by the Initial Developer or such Contributor as a result of any + such terms You offer. + + 3.6. Larger Works. + + You may create a Larger Work by combining Covered Software with + other code not governed by the terms of this License and + distribute the Larger Work as a single product. In such a case, + You must make sure the requirements of this License are fulfilled + for the Covered Software. + +4. Versions of the License. + + 4.1. New Versions. + + Sun Microsystems, Inc. is the initial license steward and may + publish revised and/or new versions of this License from time to + time. Each version will be given a distinguishing version number. + Except as provided in Section 4.3, no one other than the license + steward has the right to modify this License. + + 4.2. Effect of New Versions. + + You may always continue to use, distribute or otherwise make the + Covered Software available under the terms of the version of the + License under which You originally received the Covered Software. + If the Initial Developer includes a notice in the Original + Software prohibiting it from being distributed or otherwise made + available under any subsequent version of the License, You must + distribute and make the Covered Software available under the terms + of the version of the License under which You originally received + the Covered Software. Otherwise, You may also choose to use, + distribute or otherwise make the Covered Software available under + the terms of any subsequent version of the License published by + the license steward. + + 4.3. Modified Versions. + + When You are an Initial Developer and You want to create a new + license for Your Original Software, You may create and use a + modified version of this License if You: (a) rename the license + and remove any references to the name of the license steward + (except to note that the license differs from this License); and + (b) otherwise make it clear that the license contains terms which + differ from this License. + +5. DISCLAIMER OF WARRANTY. + + COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" + BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, + INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED + SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR + PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY + COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE + INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY + NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF + WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS + DISCLAIMER. + +6. TERMINATION. + + 6.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to + cure such breach within 30 days of becoming aware of the breach. + Provisions which, by their nature, must remain in effect beyond + the termination of this License shall survive. + + 6.2. If You assert a patent infringement claim (excluding + declaratory judgment actions) against Initial Developer or a + Contributor (the Initial Developer or Contributor against whom You + assert such claim is referred to as "Participant") alleging that + the Participant Software (meaning the Contributor Version where + the Participant is a Contributor or the Original Software where + the Participant is the Initial Developer) directly or indirectly + infringes any patent, then any and all rights granted directly or + indirectly to You by such Participant, the Initial Developer (if + the Initial Developer is not the Participant) and all Contributors + under Sections 2.1 and/or 2.2 of this License shall, upon 60 days + notice from Participant terminate prospectively and automatically + at the expiration of such 60 day notice period, unless if within + such 60 day period You withdraw Your claim with respect to the + Participant Software against such Participant either unilaterally + or pursuant to a written agreement with Participant. + + 6.3. In the event of termination under Sections 6.1 or 6.2 above, + all end user licenses that have been validly granted by You or any + distributor hereunder prior to termination (excluding licenses + granted to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE + INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF + COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE + LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR + CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT + LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK + STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL + INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT + APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO + NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR + CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT + APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + + The Covered Software is a "commercial item," as that term is + defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial + computer software" (as that term is defined at 48 + C.F.R. 252.227-7014(a)(1)) and "commercial computer software + documentation" as such terms are used in 48 C.F.R. 12.212 + (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 + C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all + U.S. Government End Users acquire Covered Software with only those + rights set forth herein. This U.S. Government Rights clause is in + lieu of, and supersedes, any other FAR, DFAR, or other clause or + provision that addresses Government rights in computer software + under this License. + +9. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed + by the law of the jurisdiction specified in a notice contained + within the Original Software (except to the extent applicable law, + if any, provides otherwise), excluding such jurisdiction's + conflict-of-law provisions. Any litigation relating to this + License shall be subject to the jurisdiction of the courts located + in the jurisdiction and venue specified in a notice contained + within the Original Software, with the losing party responsible + for costs, including, without limitation, court costs and + reasonable attorneys' fees and expenses. The application of the + United Nations Convention on Contracts for the International Sale + of Goods is expressly excluded. Any law or regulation which + provides that the language of a contract shall be construed + against the drafter shall not apply to this License. You agree + that You alone are responsible for compliance with the United + States export administration regulations (and the export control + laws and regulation of any other countries) when You use, + distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or + indirectly, out of its utilization of rights under this License + and You agree to work with Initial Developer and Contributors to + distribute such responsibility on an equitable basis. Nothing + herein is intended or shall be deemed to constitute any admission + of liability. + +-------------------------------------------------------------------- + +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND +DISTRIBUTION LICENSE (CDDL) + +For Covered Software in this distribution, this License shall +be governed by the laws of Germany (excluding conflict-of-law +provisions). + +Any litigation relating to this License shall be subject to the +jurisdiction and the courts of Berlin Germany, with venue lying +in Berlin Germany. --- star-1.5final.orig/debian/control +++ star-1.5final/debian/control @@ -0,0 +1,21 @@ +Source: star +Section: utils +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Pawel Wiecek +Build-Depends: debhelper (>= 5), libacl1-dev (>= 2.2.4), libattr1 (>= 2.4.0), libattr1-dev (>= 2.4.0), e2fslibs-dev +Standards-Version: 3.8.0 +Vcs-Browser: http://hg.svartech.com/debian/star +Vcs-Hg: http://hg.svartech.com/debian/star +Homepage: http://cdrecord.berlios.de/new/private/star.html + +Package: star +Architecture: any +Depends: ${shlibs:Depends} +Description: A fast POSIX-compliant tape archiver + Star supports several tar archive formats (including ustar, GNU tar and new + POSIX format). It's faster than other tar implementations due to advanced + buffering. + . + Star is also the only tar implementation under Linux capable of archiving + Access Control Lists. --- star-1.5final.orig/debian/dirs +++ star-1.5final/debian/dirs @@ -0,0 +1,6 @@ +bin +sbin +usr/share/doc/star +usr/share/man/man1 +usr/share/man/man5 +usr/share/man/man8 --- star-1.5final.orig/star/spax.1 +++ star-1.5final/star/spax.1 @@ -30,7 +30,7 @@ .ce .B \\$1 .. -.TH SPAX 1L "07/02/17" "J\*org Schilling" "Schily\'s USER COMMANDS" +.TH SPAX 1 "07/02/17" "J\*org Schilling" "Schily\'s USER COMMANDS" .SH NAME pax \- portable archive interchange .SH SYNOPSIS @@ -318,7 +318,6 @@ archive members of type directory being extracted or listed to match only the file or archive member itself and not the file hierarchy rooted at the file. -.....XXX Ab hier noch nicht fertig .TP .BI \-f " archive Specify the pathname of the input or output archive, @@ -3642,8 +3641,8 @@ or .B write mode, it can reject the file, substitute a non-negative -timestamp, or generate a non-portable timestamp with a leading -'\-'. Even though some implementations can support finer file-time +timestamp, or generate a non-portable timestamp with a leading '\-'. +Even though some implementations can support finer file-time granularities than seconds, the normative text requires support only for seconds since the Epoch because the ISO POSIX-1 standard states them that way. The --- star-1.5final.orig/star/star.4 +++ star-1.5final/star/star.4 @@ -14,7 +14,7 @@ .if n .ds o oe .if n .ds u ue .if n .ds s sz -.TH STAR 4L "08/03/14" "J\*org Schilling" "Schily\'s USER COMMANDS" +.TH STAR 5 "08/03/14" "J\*org Schilling" "Schily\'s USER COMMANDS" .SH NAME star \- tape archive file format .SH DESCRIPTION --- star-1.5final.orig/star/scpio.1 +++ star-1.5final/star/scpio.1 @@ -13,7 +13,7 @@ .if n .ds o oe .if n .ds u ue .if n .ds s sz -.TH SCPIO 1L "07/06/03" "J\*org Schilling" "Schily\'s USER COMMANDS" +.TH SCPIO 1 "07/06/03" "J\*org Schilling" "Schily\'s USER COMMANDS" .SH NAME scpio \- copy file archives in and out (LEGACY) .SH SYNOPSIS --- star-1.5final.orig/star/buffer.c +++ star-1.5final/star/buffer.c @@ -794,7 +794,7 @@ bufsize *= 2; #undef roundup -#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) +#define roundup(x, y) (((x)+((y)-1))&~((y)-1)) bigptr = bigbuf = __malloc((size_t) bufsize+10+pagesize, "buffer"); --- star-1.5final.orig/star/star_fat.mk +++ star-1.5final/star/star_fat.mk @@ -15,7 +15,8 @@ INSDIR= bin TARGET= star #SYMLINKS= ustar tar -SYMLINKS= ustar tar gnutar suntar scpio spax +#SYMLINKS= ustar tar gnutar suntar scpio spax +SYMLINKS= scpio spax CPPOPTS += -D__STAR__ CPPOPTS += -DSET_CTIME -DFIFO -DUSE_MMAP -DUSE_REMOTE -DUSE_RCMD_RSH #CPPOPTS += -DSET_CTIME -DFIFO -DUSE_MMAP --- star-1.5final.orig/star/star.1 +++ star-1.5final/star/star.1 @@ -1828,12 +1828,7 @@ .sp The error control file contains a set of lines, each starting with a list of error conditions to be ignored followed by white space followed by a -file name pattern (see -.BR match (1) -or -.BR patmatch (3) -for more information). -The +file name pattern. .I error control spec uses the same syntax as a single line from the error control file. If the file name pattern needs to start with white space, use a backslash @@ -4618,8 +4613,8 @@ .BR cpio (1), .BR pax (1), .BR rcp (1), -.BR mt (1), -.BR rmt (1), +.BR mt-star (1), +.BR rmt-star (1), .BR match (1), .BR dd (1), .BR sdd (1), --- star-1.5final.orig/conf/configure +++ star-1.5final/conf/configure @@ -323,9 +323,6 @@ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file="$ac_optarg" ;; - -cc=* | --cc=* ) - CC="$ac_optarg" ; echo using $CC as compiler ;; - -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ --- star-1.5final.orig/conf/configure.in +++ star-1.5final/conf/configure.in @@ -386,7 +386,7 @@ ac_save_LIBS="$LIBS" LIBS="$LIBS $lib_acl" - AC_CHECK_FUNCS(acl_get_file acl_set_file acl_from_text acl_to_text acl_free acl_delete_def_file) +# AC_CHECK_FUNCS(acl_get_file acl_set_file acl_from_text acl_to_text acl_free acl_delete_def_file) AC_CHECK_FUNCS(acl_extended_file) LIBS="$ac_save_LIBS" --- star-1.5final.orig/include/schily/schily.h +++ star-1.5final/include/schily/schily.h @@ -113,7 +113,7 @@ /* 6th arg not const, fexecv forces av[ac] = NULL */ extern int fexecv __PR((const char *, FILE *, FILE *, FILE *, int, char **)); -extern int fexecve __PR((const char *, FILE *, FILE *, FILE *, +extern int star_fexecve __PR((const char *, FILE *, FILE *, FILE *, char * const *, char * const *)); extern int fspawnv __PR((FILE *, FILE *, FILE *, int, char * const *)); extern int fspawnl __PR((FILE *, FILE *, FILE *, @@ -243,7 +243,7 @@ extern char *findbytes __PR((const void *, int, char)); extern int findline __PR((const char *, char, const char *, int, char **, int)); -extern int getline __PR((char *, int)); +extern int star_getline __PR((char *, int)); extern int getstr __PR((char *, int)); extern int breakline __PR((char *, char, char **, int)); extern int getallargs __PR((int *, char * const**, const char *, ...)); --- star-1.5final.orig/RULES/armv5tel-linux-gcc.rul +++ star-1.5final/RULES/armv5tel-linux-gcc.rul @@ -0,0 +1,70 @@ +#ident "@(#)i586-linux-gcc.rul 1.5 02/10/15 " +########################################################################### +# Written 1996 by J. Schilling +########################################################################### +# +# Platform dependent MACROS for Linux +# +########################################################################### +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +########################################################################### +include $(SRCROOT)/$(RULESDIR)/rules.prg +########################################################################### + +CPPFLAGS= $(CPPOPTS) $(CPPOPTX) +CFLAGS= $(COPTS) $(CWARNOPTS) $(COPTOPT) $(GCCOPTOPT) $(COPTX) + +CPPOPTS= -I. -I$(ARCHDIR) -I$(OINCSDIR) $(INCDIRS:%=-I%) $(OSDEFS) +COPTS= +CWOPTS= -Wall -Wtraditional \ + -Wshadow -Wmissing-prototypes -Wstrict-prototypes +COPTOPT= -O +KDEFINES= -DKERNEL -D_KERNEL +COPTDYN= -fpic +COPTGPROF= -pg + +LIB_PREFIX= lib +LIB_SUFFIX= .a +SHL_SUFFIX= .so.1.0 + +#LIB_SOCKET= -lsocket -lnsl -ldl +LIB_SOCKET= +LIB_MATH= -lm +#LIB_KVM= -lkvm +LIB_KVM= + +LIBS_PATH= -L$(OLIBSDIR) + +LDFLAGS= $(LDOPTS) $(LDOPTX) +LDLIBS= $(LIBS) $(LIBX) + +#LDOPTS= $(LIBS_PATH) $(LDPATH) $(RUNPATH) +LDOPTS= $(LIBS_PATH) $(LDPATH) +LDOPTDYN= -shared -Wl,-soname,$(TARGET) +LNDYNLIB= @$(SYMLINK) $(TARGET) $(PTARGET_BASE).so + +FLOAT_OPTIONS= + +CC= @echo " ==> COMPILING \"$@\""; gcc +LDCC= @echo " ==> LINKING \"$@\""; gcc +DYNLD= @echo " ==> LINKING dynamic library \"$@\""; gcc +RANLIB= @echo " ==> RANDOMIZING ARCHIVE \"$@\""; true +ARFLAGS= cr +LORDER= echo +TSORT= cat + +RMDEP= : +MKDEP= @echo " ==> MAKING DEPENDENCIES \"$@\""; $(RMDEP); gcc -M +MKDEP_OUT= --- star-1.5final.orig/RULES/MKLINKS +++ star-1.5final/RULES/MKLINKS @@ -107,6 +107,8 @@ ln -s i586-linux-gcc.rul m68k-linux-gcc.rul ln -s i586-linux-cc.rul armv4l-linux-cc.rul ln -s i586-linux-gcc.rul armv4l-linux-gcc.rul +ln -s i586-linux-cc.rul armv5tel-linux-cc.rul +ln -s i586-linux-gcc.rul armv5tel-linux-gcc.rul ln -s i586-linux-cc.rul mips-linux-cc.rul ln -s i586-linux-gcc.rul mips-linux-gcc.rul ln -s i586-linux-cc.rul mipsel-linux-cc.rul --- star-1.5final.orig/RULES/armv5tel-linux-cc.rul +++ star-1.5final/RULES/armv5tel-linux-cc.rul @@ -0,0 +1,70 @@ +#ident "@(#)i586-linux-cc.rul 1.5 02/10/15 " +########################################################################### +# Written 1996 by J. Schilling +########################################################################### +# +# Platform dependent MACROS for Linux +# +########################################################################### +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +########################################################################### +include $(SRCROOT)/$(RULESDIR)/rules.prg +########################################################################### + +CPPFLAGS= $(CPPOPTS) $(CPPOPTX) +CFLAGS= $(COPTS) $(CWARNOPTS) $(COPTOPT) $(GCCOPTOPT) $(COPTX) + +CPPOPTS= -I. -I$(ARCHDIR) -I$(OINCSDIR) $(INCDIRS:%=-I%) $(OSDEFS) +COPTS= +CWOPTS= -Wall -Wtraditional \ + -Wshadow -Wmissing-prototypes -Wstrict-prototypes +COPTOPT= -O +KDEFINES= -DKERNEL -D_KERNEL +COPTDYN= -fpic +COPTGPROF= -pg + +LIB_PREFIX= lib +LIB_SUFFIX= .a +SHL_SUFFIX= .so.1.0 + +#LIB_SOCKET= -lsocket -lnsl -ldl +LIB_SOCKET= +LIB_MATH= -lm +#LIB_KVM= -lkvm +LIB_KVM= + +LIBS_PATH= -L$(OLIBSDIR) + +LDFLAGS= $(LDOPTS) $(LDOPTX) +LDLIBS= $(LIBS) $(LIBX) + +#LDOPTS= $(LIBS_PATH) $(LDPATH) $(RUNPATH) +LDOPTS= $(LIBS_PATH) $(LDPATH) +LDOPTDYN= -shared -Wl,-soname,$(TARGET) +LNDYNLIB= @$(SYMLINK) $(TARGET) $(PTARGET_BASE).so + +FLOAT_OPTIONS= + +CC= @echo " ==> COMPILING \"$@\""; gcc +LDCC= @echo " ==> LINKING \"$@\""; gcc +DYNLD= @echo " ==> LINKING dynamic library \"$@\""; gcc +RANLIB= @echo " ==> RANDOMIZING ARCHIVE \"$@\""; true +ARFLAGS= cr +LORDER= echo +TSORT= cat + +RMDEP= : +MKDEP= @echo " ==> MAKING DEPENDENCIES \"$@\""; $(RMDEP); gcc -M +MKDEP_OUT= --- star-1.5final.orig/rmt/rmt.1 +++ star-1.5final/rmt/rmt.1 @@ -13,11 +13,11 @@ .if n .ds o oe .if n .ds u ue .if n .ds s sz -.TH RMT 1 "Release 1.1" "J\*org Schilling" "Schily\'s USER COMMANDS" +.TH RMT-STAR 8 "Release 1.1" "J\*org Schilling" "Schily\'s USER COMMANDS" .SH NAME -rmt \- remote magnetic tape protocol server +rmt-star \- remote magnetic tape protocol server .SH SYNOPSIS -.B /opt/schily/sbin/rmt +.B /sbin/rmt-star .br .B /etc/rmt