summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortv <tv>2005-01-06 05:32:29 +0000
committertv <tv>2005-01-06 05:32:29 +0000
commit6084989c38f4b6a98d1295b87c32ae6167b306ef (patch)
tree3e0e17bdc7871a29a0ce9d23a71ea27bc88ac783
parent0aed1a8edcc2234fea37ecab988556e6f1631e97 (diff)
downloadpkgsrc-6084989c38f4b6a98d1295b87c32ae6167b306ef.tar.gz
Don't "cp -p" for *source* files. Builds are usually done as an unprivileged
user, so it's not nice to try to use an option that will try to chown if the repository isn't owned by the builder. (Some OS's do in fact cause an error when the chown in "cp -p" fails.)
-rw-r--r--archivers/pax/Makefile4
-rw-r--r--devel/bcc/Makefile12
-rw-r--r--net/mppe-lkm/Makefile4
-rw-r--r--net/tnftp/Makefile4
-rw-r--r--pkgtools/binpatch/Makefile4
-rw-r--r--pkgtools/digest/Makefile4
-rw-r--r--pkgtools/libkver/Makefile4
-rw-r--r--pkgtools/libnbcompat/Makefile4
-rw-r--r--pkgtools/mtree/Makefile4
-rw-r--r--pkgtools/pkg_install-info/Makefile4
-rw-r--r--pkgtools/pkg_install/Makefile4
-rw-r--r--pkgtools/pkgclean/Makefile4
-rw-r--r--pkgtools/pkgfind/Makefile4
-rw-r--r--pkgtools/rc.subr/Makefile4
-rw-r--r--pkgtools/rcorder/Makefile4
-rw-r--r--sysutils/xenvstat/Makefile4
-rw-r--r--textproc/nbsed/Makefile4
17 files changed, 38 insertions, 38 deletions
diff --git a/archivers/pax/Makefile b/archivers/pax/Makefile
index 458d3d2e521..31bd6d3a51b 100644
--- a/archivers/pax/Makefile
+++ b/archivers/pax/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2004/08/21 03:28:56 jlam Exp $
+# $NetBSD: Makefile,v 1.18 2005/01/06 05:35:14 tv Exp $
#
DISTNAME= pax-20040802
@@ -23,7 +23,7 @@ PKG_PRESERVE= # defined
.include "../../mk/bsd.prefs.mk"
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.if defined(LIBNBCOMPAT_STYLE) && (${LIBNBCOMPAT_STYLE} == "inplace")
. include "../../pkgtools/libnbcompat/inplace.mk"
diff --git a/devel/bcc/Makefile b/devel/bcc/Makefile
index a94f0b2d5bb..2496362a5b1 100644
--- a/devel/bcc/Makefile
+++ b/devel/bcc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2003/07/17 21:29:39 grant Exp $
+# $NetBSD: Makefile,v 1.10 2005/01/06 05:36:28 tv Exp $
# FreeBSD Id: Makefile,v 1.6 1996/11/18 11:22:35 asami Exp
#
@@ -17,10 +17,10 @@ do-configure:
${RM} -f ${WRKSRC}/as/typeconv.o
${MV} ${WRKSRC}/bcc ${WRKSRC}/bcc-cc1
${MKDIR} ${WRKSRC}/bcc
- ${CP} -p ${FILESDIR}/Makefile.bcc ${WRKSRC}/bcc/Makefile
- ${CP} -p ${FILESDIR}/ld86.1 ${WRKSRC}/ld/
- ${CP} -p ${FILESDIR}/as86.1 ${WRKSRC}/as/
- ${CP} -p ${FILESDIR}/bcc.1 ${WRKSRC}/bcc/
- ${CP} -p ${FILESDIR}/bcc-cc1.1 ${WRKSRC}/bcc-cc1/
+ ${CP} ${FILESDIR}/Makefile.bcc ${WRKSRC}/bcc/Makefile
+ ${CP} ${FILESDIR}/ld86.1 ${WRKSRC}/ld/
+ ${CP} ${FILESDIR}/as86.1 ${WRKSRC}/as/
+ ${CP} ${FILESDIR}/bcc.1 ${WRKSRC}/bcc/
+ ${CP} ${FILESDIR}/bcc-cc1.1 ${WRKSRC}/bcc-cc1/
.include "../../mk/bsd.pkg.mk"
diff --git a/net/mppe-lkm/Makefile b/net/mppe-lkm/Makefile
index 6b9aef92b7f..1a293d7b4b0 100644
--- a/net/mppe-lkm/Makefile
+++ b/net/mppe-lkm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/01/02 02:52:56 cube Exp $
+# $NetBSD: Makefile,v 1.2 2005/01/06 05:37:21 tv Exp $
DISTNAME= kernel_ppp_mppe-0.0.4-src
PKGNAME= mppe-lkm-0.0.4
@@ -19,7 +19,7 @@ KPM_SRC= ${WRKDIR}/${DISTNAME:C/-src$//}
INSTALLATION_DIRS= lkm
post-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
@${CHMOD} -R u+w ${KPM_SRC}
@${CP} -p ${KPM_SRC}/ppp-comp-local.h ${KPM_SRC}/ppp_mppe_compress.c \
${WRKSRC}
diff --git a/net/tnftp/Makefile b/net/tnftp/Makefile
index 6620f4fe3c2..7ae40abd6d2 100644
--- a/net/tnftp/Makefile
+++ b/net/tnftp/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2005/01/04 23:48:06 lukem Exp $
+# $NetBSD: Makefile,v 1.11 2005/01/06 05:38:56 tv Exp $
#
DISTNAME= tnftp-20050103
@@ -40,6 +40,6 @@ OPSYSVARS+= MAKE_ENV
MAKE_ENV.SunOS+= CPPFLAGS=""
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"
diff --git a/pkgtools/binpatch/Makefile b/pkgtools/binpatch/Makefile
index fd20af1eada..547cd103023 100644
--- a/pkgtools/binpatch/Makefile
+++ b/pkgtools/binpatch/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2004/07/23 03:37:26 atatat Exp $
+# $NetBSD: Makefile,v 1.2 2005/01/06 05:32:29 tv Exp $
#
DISTNAME= binpatch-1.0
@@ -17,7 +17,7 @@ NO_CHECKSUM= # defined
.include "../../mk/bsd.prefs.mk"
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
do-build:
@(cd ${WRKSRC}; \
diff --git a/pkgtools/digest/Makefile b/pkgtools/digest/Makefile
index ff86309e89b..8fbaa969dfa 100644
--- a/pkgtools/digest/Makefile
+++ b/pkgtools/digest/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.43 2004/10/14 03:13:00 atatat Exp $
+# $NetBSD: Makefile,v 1.44 2005/01/06 05:32:29 tv Exp $
#
# When adding new digest algorithms, please use rmd160 as the template,
# and bump the VERSION definition.
@@ -31,7 +31,7 @@ VERSION!= ${AWK} -F "'" '/^PACKAGE_VERSION=/ {print $$2}' \
${FILESDIR}/configure
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
pre-install:
-@${MKDIR} ${PKG_DBDIR}
diff --git a/pkgtools/libkver/Makefile b/pkgtools/libkver/Makefile
index e6406b4cf27..dcc138067f0 100644
--- a/pkgtools/libkver/Makefile
+++ b/pkgtools/libkver/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2004/07/06 09:45:38 cube Exp $
+# $NetBSD: Makefile,v 1.12 2005/01/06 05:32:29 tv Exp $
DISTNAME= libkver-${VERSION}
CATEGORIES= pkgtools
@@ -45,6 +45,6 @@ INSTALLATION_DIRS+= sbin
.endif
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"
diff --git a/pkgtools/libnbcompat/Makefile b/pkgtools/libnbcompat/Makefile
index ff0d72674f5..49f0aac3500 100644
--- a/pkgtools/libnbcompat/Makefile
+++ b/pkgtools/libnbcompat/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.43 2004/10/24 11:18:33 grant Exp $
+# $NetBSD: Makefile,v 1.44 2005/01/06 05:32:29 tv Exp $
#
# NOTE: If you update this package, it is *mandatory* that you update
# pkgsrc/pkgtools/libnbcompat/files/README to reflect the actual
@@ -26,6 +26,6 @@ PKG_CREATE= PKG_DBDIR=${_PKG_DBDIR} ${PKG_CREATE_CMD}
PKG_DELETE= PKG_DBDIR=${_PKG_DBDIR} ${PKG_DELETE_CMD}
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"
diff --git a/pkgtools/mtree/Makefile b/pkgtools/mtree/Makefile
index d4942277bee..0938f5b4e79 100644
--- a/pkgtools/mtree/Makefile
+++ b/pkgtools/mtree/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2004/08/27 02:19:44 schmonz Exp $
+# $NetBSD: Makefile,v 1.14 2005/01/06 05:32:29 tv Exp $
#
DISTNAME= mtree-20040722
@@ -23,7 +23,7 @@ PKG_PRESERVE= # defined
.include "../../mk/bsd.prefs.mk"
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.if defined(LIBNBCOMPAT_STYLE) && (${LIBNBCOMPAT_STYLE} == "inplace")
. include "../../pkgtools/libnbcompat/inplace.mk"
diff --git a/pkgtools/pkg_install-info/Makefile b/pkgtools/pkg_install-info/Makefile
index a8ac239e637..fdaddf23ffa 100644
--- a/pkgtools/pkg_install-info/Makefile
+++ b/pkgtools/pkg_install-info/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2004/03/23 04:41:01 jlam Exp $
+# $NetBSD: Makefile,v 1.9 2005/01/06 05:32:29 tv Exp $
#
DISTNAME= pkg_install-info-${VERSION}
@@ -27,6 +27,6 @@ MAKE_ENV+= BINOWN=${BINOWN} BINGRP=${BINGRP}
INSTALLATION_DIRS= bin
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile
index 4d7709e8f4d..741717b317b 100644
--- a/pkgtools/pkg_install/Makefile
+++ b/pkgtools/pkg_install/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.106 2004/12/09 21:29:06 erh Exp $
+# $NetBSD: Makefile,v 1.107 2005/01/06 05:32:29 tv Exp $
# Notes to package maintainers:
#
@@ -61,7 +61,7 @@ VERSION!= ${AWK} -F '"' '/PKGTOOLS_VERSION/ {print $$2}' \
${FILESDIR}/lib/version.h
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
post-install:
if [ ! -f ${PKG_DBDIR}/pkgdb.byfile.db ]; then \
diff --git a/pkgtools/pkgclean/Makefile b/pkgtools/pkgclean/Makefile
index 2a8ae9a5434..83a1c74a1a7 100644
--- a/pkgtools/pkgclean/Makefile
+++ b/pkgtools/pkgclean/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2004/10/14 16:11:05 ben Exp $
+# $NetBSD: Makefile,v 1.4 2005/01/06 05:32:29 tv Exp $
DISTNAME= pkgclean-20041014
CATEGORIES= pkgtools
@@ -19,7 +19,7 @@ INSTALLATION_DIRS= bin man/cat1 man/man1
NROFF= nroff -mandoc
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/pkgclean ${WRKSRC}/pkgclean.c
diff --git a/pkgtools/pkgfind/Makefile b/pkgtools/pkgfind/Makefile
index dfd287b9934..1b995bbb313 100644
--- a/pkgtools/pkgfind/Makefile
+++ b/pkgtools/pkgfind/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2004/10/23 10:48:08 peter Exp $
+# $NetBSD: Makefile,v 1.5 2005/01/06 05:32:29 tv Exp $
DISTNAME= pkgfind-20041023
CATEGORIES= pkgtools
@@ -19,7 +19,7 @@ INSTALLATION_DIRS= bin man/cat1 man/man1
NROFF= nroff -mandoc
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/pkgfind ${WRKSRC}/pkgfind.c
diff --git a/pkgtools/rc.subr/Makefile b/pkgtools/rc.subr/Makefile
index 9471bde9342..903cf1dbde9 100644
--- a/pkgtools/rc.subr/Makefile
+++ b/pkgtools/rc.subr/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2004/12/28 02:47:48 reed Exp $
+# $NetBSD: Makefile,v 1.10 2005/01/06 05:32:30 tv Exp $
#
DISTNAME= rc.subr-20041011
@@ -24,7 +24,7 @@ PLIST_SUBST+= RCD_SCRIPTS_DIR=${RCD_SCRIPTS_DIR:S/^\///}
CONF_FILES+= ${PREFIX}etc/rc.conf.example ${PREFIX}etc/rc.conf
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
do-install:
${INSTALL_DATA_DIR} ${RCD_SCRIPTS_DIR}
diff --git a/pkgtools/rcorder/Makefile b/pkgtools/rcorder/Makefile
index ef6cfa3de94..6db89b98a81 100644
--- a/pkgtools/rcorder/Makefile
+++ b/pkgtools/rcorder/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2004/08/27 17:08:07 reed Exp $
+# $NetBSD: Makefile,v 1.6 2005/01/06 05:32:30 tv Exp $
#
DISTNAME= rcorder-20031013
@@ -23,6 +23,6 @@ GNU_CONFIGURE= yes
.endif
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"
diff --git a/sysutils/xenvstat/Makefile b/sysutils/xenvstat/Makefile
index 8c99b1221e0..f25c9878890 100644
--- a/sysutils/xenvstat/Makefile
+++ b/sysutils/xenvstat/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2004/12/28 00:01:07 xtraeme Exp $
+# $NetBSD: Makefile,v 1.2 2005/01/06 05:38:56 tv Exp $
DISTNAME= xenvstat-20041127
CATEGORIES= sysutils
@@ -19,7 +19,7 @@ USE_BUILDLINK3= yes
LIBS= -lXmu -lXext -lXt -lX11 -lm
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
do-build:
${CC} ${CFLAGS} ${LDFLAGS} -o ${WRKSRC}/xenvstat \
diff --git a/textproc/nbsed/Makefile b/textproc/nbsed/Makefile
index b67dbcffe10..ef3e5ac914c 100644
--- a/textproc/nbsed/Makefile
+++ b/textproc/nbsed/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2004/08/27 03:45:08 jlam Exp $
+# $NetBSD: Makefile,v 1.10 2005/01/06 05:38:56 tv Exp $
DISTNAME= nbsed-20040821
CATEGORIES= textproc pkgtools
@@ -23,6 +23,6 @@ CONFIGURE_ARGS+= --program-transform-name="s,sed,nbsed,"
.endif
do-extract:
- @${CP} -Rp ${FILESDIR} ${WRKSRC}
+ @${CP} -R ${FILESDIR} ${WRKSRC}
.include "../../mk/bsd.pkg.mk"