diff options
author | agc <agc@pkgsrc.org> | 2001-10-25 20:16:53 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-10-25 20:16:53 +0000 |
commit | 2c0130d6fbaf743b223f7294e6d69863273003f8 (patch) | |
tree | 56f5e4e15b6bef8d7dc81d21a7bab0905b4e278d /net/gated/scripts | |
parent | 197b4c463a89598ea6f18daa35137bf4f8789b39 (diff) | |
download | pkgsrc-2c0130d6fbaf743b223f7294e6d69863273003f8.tar.gz |
+ Move configuration from configure script to a standard package
Makefile target.
+ Modify Makefiles in patch stage, rather than using sed in configure
stage.
+ Use ${LOWER_OPSYS} where appropriate.
+ Use pax in preference to a tar pipeline to copy hierarchies at
install time.
Diffstat (limited to 'net/gated/scripts')
-rwxr-xr-x | net/gated/scripts/configure | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/net/gated/scripts/configure b/net/gated/scripts/configure deleted file mode 100755 index de1a31c15b4..00000000000 --- a/net/gated/scripts/configure +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# -# $NetBSD: configure,v 1.2 1998/08/07 11:10:40 agc Exp $ -# -# Configure gated -# -cd $WRKSRC - -for file in Makefile src/Makefile src/util/Makefile.template ; do - mv $file $file.orig - sed -e 's/^true:;$/true:/' -e 's/^[ ]*$//' $file.orig >$file -done - -cd src - -obj=obj.`util/archtype` -mkdir -p $obj - -cp configs/netbsd $obj/Config -rm -f Config |