Project import
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5d9b954 --- /dev/null +++ b/Makefile
@@ -0,0 +1,109 @@ +# +# Copyright (c) 2010-2011 Nest, Inc. +# All rights reserved. +# +# This document is the property of Nest. It is considered +# confidential and proprietary information. +# +# This document may not be reproduced or transmitted in any form, +# in whole or in part, without the express written permission of +# Nest. +# +# Description: +# This file is the makefile for the Linux Network File System +# (NFS) Utilities (nfs-utils). +# + + +include pre.mak + +PackageName := nfs-utils + +PackageExtension := tar.bz2 +PackageSeparator := - + +PackagePatchArgs := -p1 + +PackageArchive := $(PackageName).$(PackageExtension) +PackageSourceDir := $(PackageName)$(PackageSeparator)$(PackageVersion) + +PackageBuildMakefile = $(call GenerateBuildPaths,Makefile) + +CleanPaths += $(PackageLicenseFile) + +SOURCEDIRS = $(PackageSourceDir) +$(PackageSourceDir)_RULE_TARGET = $(BuildDirectory)/configure + +all: $(PackageDefaultGoal) + +# Generate the package license contents. + +$(PackageSourceDir)/COPYING: $(BuildDirectory)/source + +$(PackageLicenseFile): $(PackageSourceDir)/COPYING + $(copy-result) + +# Extract the source from the archive and apply patches, if any. + +$(PackageSourceDir): $(PackageArchive) $(PackagePatchPaths) + $(expand-and-patch-package) + +# Prepare the sources. + +$(BuildDirectory)/source: | $(PackageSourceDir) $(BuildDirectory) + $(Verbose)touch $@ + +# Patch the sources, if necessary. + +$(BuildDirectory)/patch: $(BuildDirectory)/source + $(Verbose)touch $@ + +# Generate the package build makefile. +# Configure the source for building. + +$(BuildDirectory)/configure: $(BuildDirectory)/source | $(PackageSourceDir) $(BuildDirectory) + $(Verbose)cd $(BuildDirectory) && \ + $(CURDIR)/$(PackageSourceDir)/configure \ + CC="$(CC) $(CPPOPTFLAGS)" AR=$(AR) RANLIB=$(RANLIB) STRIP=$(STRIP) \ + INSTALL="$(INSTALL) $(INSTALLFLAGS)" \ + CPPFLAGS="$(call ToolGenerateIncludeArgument,$(LibCapIncludePath)) \ + $(call ToolGenerateIncludeArgument,$(LinuxIncludePath))" \ + LDFLAGS=$(call GenerateLibraryPathArgument,$(LibCapLibraryPath)) \ + --build=$(HostTuple) \ + --host=$(TargetTuple) \ + --with-tcp-wrappers=$(TcpWrappersPrefixPath) \ + --disable-gss \ + --disable-nfsv4 \ + --disable-tirpc \ + --disable-uuid \ + --prefix=/usr \ + --sysconfdir=/etc + $(Verbose)touch $@ + +# Build the source. +# +# We have to unset MAKEFLAGS since they confuse the package build otherwise. + +$(BuildDirectory)/build: $(BuildDirectory)/configure + $(Verbose)unset MAKEFLAGS && \ + $(MAKE) $(JOBSFLAG) -C $(BuildDirectory) all + $(Verbose)touch $@ + +# Stage the build to a temporary installation area. +# +# We have to unset MAKEFLAGS since they confuse the package build otherwise. + +$(BuildDirectory)/stage: $(BuildDirectory)/build | $(ResultDirectory) + $(Verbose)unset MAKEFLAGS && \ + $(MAKE) $(JOBSFLAG) -C $(BuildDirectory) DESTDIR=$(ResultDirectory) install + $(Verbose)touch $@ + +.PHONY: stage +stage: $(BuildDirectory)/stage + +clean: + $(Verbose)$(RM) $(RMFLAGS) -r $(PackageSourceDir) + $(Verbose)$(RM) $(RMFLAGS) -r $(BuildDirectory) + $(Verbose)$(RM) $(RMFLAGS) -r $(ResultDirectory) + +include post.mak
diff --git a/nfs-utils.patches/nfs-utils-50.description b/nfs-utils.patches/nfs-utils-50.description new file mode 100644 index 0000000..b416b9a --- /dev/null +++ b/nfs-utils.patches/nfs-utils-50.description
@@ -0,0 +1,2 @@ +This patch adds support for building from non-colocated source and +object directories.
diff --git a/nfs-utils.patches/nfs-utils-50.patch b/nfs-utils.patches/nfs-utils-50.patch new file mode 100644 index 0000000..b20c0e5 --- /dev/null +++ b/nfs-utils.patches/nfs-utils-50.patch
@@ -0,0 +1,259 @@ +diff -aruN a/support/export/Makefile.am b/support/export/Makefile.am +--- a/support/export/Makefile.am 2010-02-18 04:35:00.000000000 -0800 ++++ b/support/export/Makefile.am 2010-09-08 08:37:07.000000000 -0700 +@@ -32,10 +32,16 @@ + $(GENFILES_CLNT): %_clnt.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -l -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -c -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_H): %.h: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true +diff -aruN a/support/export/Makefile.in b/support/export/Makefile.in +--- a/support/export/Makefile.in 2010-02-18 04:36:42.000000000 -0800 ++++ b/support/export/Makefile.in 2010-09-08 08:39:35.000000000 -0700 +@@ -66,7 +66,7 @@ + hostname.$(OBJEXT) nfsctl.$(OBJEXT) rmtab.$(OBJEXT) \ + xtab.$(OBJEXT) mount_clnt.$(OBJEXT) mount_xdr.$(OBJEXT) + libexport_a_OBJECTS = $(am_libexport_a_OBJECTS) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +@@ -561,10 +561,16 @@ + $(GENFILES_CLNT): %_clnt.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -l -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -c -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_H): %.h: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true +diff -aruN a/support/misc/Makefile.in b/support/misc/Makefile.in +--- a/support/misc/Makefile.in 2010-02-18 04:36:43.000000000 -0800 ++++ b/support/misc/Makefile.in 2010-09-08 08:41:35.000000000 -0700 +@@ -63,7 +63,7 @@ + am_libmisc_a_OBJECTS = tcpwrapper.$(OBJEXT) from_local.$(OBJEXT) \ + mountpoint.$(OBJEXT) + libmisc_a_OBJECTS = $(am_libmisc_a_OBJECTS) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/support/nfs/Makefile.in b/support/nfs/Makefile.in +--- a/support/nfs/Makefile.in 2010-02-18 04:36:43.000000000 -0800 ++++ b/support/nfs/Makefile.in 2010-09-08 08:42:13.000000000 -0700 +@@ -68,7 +68,7 @@ + cacheio.$(OBJEXT) closeall.$(OBJEXT) nfs_mntent.$(OBJEXT) \ + conffile.$(OBJEXT) svc_create.$(OBJEXT) + libnfs_a_OBJECTS = $(am_libnfs_a_OBJECTS) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/support/nsm/Makefile.am b/support/nsm/Makefile.am +--- a/support/nsm/Makefile.am 2010-02-18 04:35:00.000000000 -0800 ++++ b/support/nsm/Makefile.am 2010-09-08 08:53:09.000000000 -0700 +@@ -25,14 +25,23 @@ + $(GENFILES_CLNT): %_clnt.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -l -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_SVC): %_svc.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -m -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -c -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_H): %.h: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true +diff -aruN a/support/nsm/Makefile.in b/support/nsm/Makefile.in +--- a/support/nsm/Makefile.in 2010-02-18 04:36:43.000000000 -0800 ++++ b/support/nsm/Makefile.in 2010-09-08 08:55:28.000000000 -0700 +@@ -68,7 +68,7 @@ + $(am__objects_4) + am_libnsm_a_OBJECTS = $(am__objects_5) file.$(OBJEXT) rpc.$(OBJEXT) + libnsm_a_OBJECTS = $(am_libnsm_a_OBJECTS) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +@@ -549,14 +549,23 @@ + $(GENFILES_CLNT): %_clnt.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -l -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_SVC): %_svc.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -m -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -c -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_H): %.h: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true +diff -aruN a/utils/exportfs/Makefile.in b/utils/exportfs/Makefile.in +--- a/utils/exportfs/Makefile.in 2010-02-18 04:36:44.000000000 -0800 ++++ b/utils/exportfs/Makefile.in 2010-09-08 08:57:20.000000000 -0700 +@@ -66,7 +66,7 @@ + exportfs_DEPENDENCIES = ../../support/export/libexport.a \ + ../../support/nfs/libnfs.a ../../support/misc/libmisc.a \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/utils/mount/Makefile.in b/utils/mount/Makefile.in +--- a/utils/mount/Makefile.in 2010-02-18 04:36:44.000000000 -0800 ++++ b/utils/mount/Makefile.in 2010-09-08 09:09:06.000000000 -0700 +@@ -77,7 +77,7 @@ + mount_nfs_OBJECTS = $(am_mount_nfs_OBJECTS) + mount_nfs_DEPENDENCIES = ../../support/nfs/libnfs.a \ + ../../support/export/libexport.a +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/utils/mountd/Makefile.in b/utils/mountd/Makefile.in +--- a/utils/mountd/Makefile.in 2010-02-18 04:36:44.000000000 -0800 ++++ b/utils/mountd/Makefile.in 2010-09-08 08:58:58.000000000 -0700 +@@ -70,7 +70,7 @@ + ../../support/nfs/libnfs.a ../../support/misc/libmisc.a \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/utils/nfsd/Makefile.in b/utils/nfsd/Makefile.in +--- a/utils/nfsd/Makefile.in 2010-02-18 04:36:44.000000000 -0800 ++++ b/utils/nfsd/Makefile.in 2010-09-08 09:00:19.000000000 -0700 +@@ -62,7 +62,7 @@ + am_nfsd_OBJECTS = nfsd.$(OBJEXT) nfssvc.$(OBJEXT) + nfsd_OBJECTS = $(am_nfsd_OBJECTS) + nfsd_DEPENDENCIES = ../../support/nfs/libnfs.a +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/utils/showmount/Makefile.in b/utils/showmount/Makefile.in +--- a/utils/showmount/Makefile.in 2010-02-18 04:36:44.000000000 -0800 ++++ b/utils/showmount/Makefile.in 2010-09-08 09:03:56.000000000 -0700 +@@ -63,7 +63,7 @@ + showmount_OBJECTS = $(am_showmount_OBJECTS) + showmount_DEPENDENCIES = ../../support/export/libexport.a \ + ../../support/nfs/libnfs.a ../../support/misc/libmisc.a +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +diff -aruN a/utils/statd/Makefile.am b/utils/statd/Makefile.am +--- a/utils/statd/Makefile.am 2010-02-18 04:35:00.000000000 -0800 ++++ b/utils/statd/Makefile.am 2010-09-08 08:36:26.000000000 -0700 +@@ -33,14 +33,23 @@ + $(GENFILES_CLNT): %_clnt.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -l -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_SVC): %_svc.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -m -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -c -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_H): %.h: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true +diff -aruN a/utils/statd/Makefile.in b/utils/statd/Makefile.in +--- a/utils/statd/Makefile.in 2010-02-18 04:36:44.000000000 -0800 ++++ b/utils/statd/Makefile.in 2010-09-08 09:06:52.000000000 -0700 +@@ -99,7 +99,7 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + SCRIPTS = $(dist_sbin_SCRIPTS) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/support/include -I$(top_srcdir)/support/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + am__mv = mv -f +@@ -732,14 +732,23 @@ + $(GENFILES_CLNT): %_clnt.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -l -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_SVC): %_svc.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -m -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true + $(RPCGEN) -c -o $@ $< ++ $(SED) "s,$(abs_srcdir),$(abs_builddir),g" < $@ > $@.N ++ rm -f $@ ++ mv -f $@.N $@ + + $(GENFILES_H): %.h: %.x $(RPCGEN) + test -f $@ && rm -rf $@ || true
diff --git a/nfs-utils.tar.bz2 b/nfs-utils.tar.bz2 new file mode 100644 index 0000000..12d3972 --- /dev/null +++ b/nfs-utils.tar.bz2 Binary files differ
diff --git a/nfs-utils.url b/nfs-utils.url new file mode 100644 index 0000000..2befd17 --- /dev/null +++ b/nfs-utils.url
@@ -0,0 +1 @@ +http://download.sourceforge.net/nfs/nfs-utils-1.2.2.tar.bz2
diff --git a/nfs-utils.version b/nfs-utils.version new file mode 100644 index 0000000..23aa839 --- /dev/null +++ b/nfs-utils.version
@@ -0,0 +1 @@ +1.2.2