# RDIST file for updating the package to ursa.
#
# To update the package:               		% rdist
# To check if the package needs updating:       % rdist -v


ROOT  = /iraf/extern/imcnv/
HOSTS = ( ursa gemini bigx )
SKIPPAT= (			# Stuff to omit from distribution 
	*.f\$
	/core\$
	/foo\\.*\$
	/dpar*\$
	Distfile\$
	spool\\.*\$
	generic/*\$
	bin\\.[a-r]*\$ 
	bin\\.ssun\$ 
	bin\\.[t-z]*\$
	)
AROOT  = /d1/fitz/imcnv/
AHOSTS = ( tucana )
ASKIPPAT= (			# Stuff to omit from distribution 
	/*.a\$
	/*.e\$
	/*.o\$
	/*.f\$
	/_*\$
	/core\$
	/foo\\.*\$
	/dpar*\$
	Distfile\$
	spool\\.*\$
	generic/*\$
	bin\\.[a-z]*\$ 
	)

imcnv:
    * -> ${HOSTS}
        install -R -w -y ${ROOT} ;
        except_pat ${SKIPPAT} ;

archive:
    * -> ${AHOSTS}
        install -R -w -y ${AROOT} ;
        except_pat ${ASKIPPAT} ;

