summaryrefslogtreecommitdiff
path: root/net/isc-dhcp3-server/files/patch-configure
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2004-01-17 23:09:02 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2004-01-17 23:09:02 +0000
commit6db5748c1e4cac1d9d679d225819689a451f2cfe (patch)
tree76e0dc09fe08ea11e5c8e33734f152e055b043e0 /net/isc-dhcp3-server/files/patch-configure
parent{a,h,i}spell libs are only installed if you build enchant with support for them. (diff)
Maintainer update: isc-dhcp3 splitted to -server, -client, -relay and -devel sub-ports
Step one: convert net/isc-dhcp3 into net/isc-dhcp3-server PR: ports/51757 Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>
Notes
Notes: svn path=/head/; revision=98427
Diffstat (limited to 'net/isc-dhcp3-server/files/patch-configure')
-rw-r--r--net/isc-dhcp3-server/files/patch-configure41
1 files changed, 41 insertions, 0 deletions
diff --git a/net/isc-dhcp3-server/files/patch-configure b/net/isc-dhcp3-server/files/patch-configure
new file mode 100644
index 000000000000..5aff6909acce
--- /dev/null
+++ b/net/isc-dhcp3-server/files/patch-configure
@@ -0,0 +1,41 @@
+--- configure.orig Sat Apr 20 23:44:13 2002
++++ configure Mon Apr 28 23:02:10 2003
+@@ -13,6 +13,9 @@
+ elif [ x$1 = x--dirs ]; then
+ dirs=$2
+ shift
++ elif [ x$1 = x--subsys ]; then
++ subsys=$2
++ shift
+ elif [ x$1 = x--no-links ]; then
+ nolinks=YES
+ elif [ x$1 = x--copts ]; then
+@@ -233,7 +236,14 @@
+ fi
+
+ if [ x"$dirs" = x ]; then
+- dirs=". client server relay common omapip dhcpctl minires dst"
++ dirs=". common minires dst omapip dhcpctl"
++ if [ x$subsys = x ]; then
++ dirs="$dirs server omshell client relay"
++ elif [ x$subsys = xserver ]; then
++ dirs="$dirs server omshell"
++ elif [ x$subsys = xclient -o x$subsys = xrelay ]; then
++ dirs="$dirs $subsys"
++ fi
+ fi
+
+ for foo in $dirs; do
+@@ -253,7 +263,11 @@
+
+ # Make the link tree in which to actually build.
+ if [ x$nolinks = x ]; then
+- make links
++ if [ x$subsys = x ]; then
++ make links
++ else
++ make links.$subsys
++ fi
+ fi
+
+ exit 0