CVS commit: src/external/bsd/pkg_install/sbin/pkg_create

2019-04-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sat Apr  6 10:37:57 UTC 2019

Modified Files:
src/external/bsd/pkg_install/sbin/pkg_create: Makefile

Log Message:
revert previkous it isn't needed


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/external/bsd/pkg_install/sbin/pkg_create/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/sbin/pkg_create/Makefile
diff -u src/external/bsd/pkg_install/sbin/pkg_create/Makefile:1.3 src/external/bsd/pkg_install/sbin/pkg_create/Makefile:1.4
--- src/external/bsd/pkg_install/sbin/pkg_create/Makefile:1.3	Sat Apr  6 10:29:13 2019
+++ src/external/bsd/pkg_install/sbin/pkg_create/Makefile	Sat Apr  6 10:37:57 2019
@@ -1,11 +1,9 @@
-# $NetBSD: Makefile,v 1.3 2019/04/06 10:29:13 pgoyette Exp $
+# $NetBSD: Makefile,v 1.4 2019/04/06 10:37:57 pgoyette Exp $
 # Original from FreeBSD, no rcs id.
 
 PROG= pkg_create
 SRCS= main.c perform.c pl.c util.c build.c
 
-COPTS.main.c+=	-Wno-error=implicit-fallthrough
-
 .include 
 
 .PATH:	${DIST}/create



CVS commit: src/external/bsd/pkg_install/sbin/pkg_create

2019-04-06 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Sat Apr  6 10:29:13 UTC 2019

Modified Files:
src/external/bsd/pkg_install/sbin/pkg_create: Makefile

Log Message:
Treat implicit-fallthrough only as a warning


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/external/bsd/pkg_install/sbin/pkg_create/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/sbin/pkg_create/Makefile
diff -u src/external/bsd/pkg_install/sbin/pkg_create/Makefile:1.2 src/external/bsd/pkg_install/sbin/pkg_create/Makefile:1.3
--- src/external/bsd/pkg_install/sbin/pkg_create/Makefile:1.2	Mon Feb  2 20:47:21 2009
+++ src/external/bsd/pkg_install/sbin/pkg_create/Makefile	Sat Apr  6 10:29:13 2019
@@ -1,9 +1,11 @@
-# $NetBSD: Makefile,v 1.2 2009/02/02 20:47:21 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2019/04/06 10:29:13 pgoyette Exp $
 # Original from FreeBSD, no rcs id.
 
 PROG= pkg_create
 SRCS= main.c perform.c pl.c util.c build.c
 
+COPTS.main.c+=	-Wno-error=implicit-fallthrough
+
 .include 
 
 .PATH:	${DIST}/create



CVS commit: src/external/bsd/pkg_install/sbin

2017-04-21 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Fri Apr 21 12:43:22 UTC 2017

Modified Files:
src/external/bsd/pkg_install/sbin: Makefile.inc

Log Message:
Help silly sun2 along.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/pkg_install/sbin/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/sbin/Makefile.inc
diff -u src/external/bsd/pkg_install/sbin/Makefile.inc:1.4 src/external/bsd/pkg_install/sbin/Makefile.inc:1.5
--- src/external/bsd/pkg_install/sbin/Makefile.inc:1.4	Thu Apr 20 13:18:47 2017
+++ src/external/bsd/pkg_install/sbin/Makefile.inc	Fri Apr 21 12:43:22 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.4 2017/04/20 13:18:47 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.5 2017/04/21 12:43:22 joerg Exp $
 
 .include 
 
@@ -21,5 +21,5 @@ LDADD+=		-larchive
 DPADD+=		${LIBZ} ${LIBBZ2}
 LDADD+=		-lz -lbz2
 
-DPADD+=		${LIBLZMA}
-LDADD+=		-llzma
+DPADD+=		${LIBLZMA} ${LIBPTHREAD}
+LDADD+=		-llzma -lpthread



CVS commit: src/external/bsd/pkg_install/sbin

2017-04-20 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Thu Apr 20 13:18:47 UTC 2017

Modified Files:
src/external/bsd/pkg_install/sbin: Makefile.inc
src/external/bsd/pkg_install/sbin/pkg_add: Makefile

Log Message:
Update build system for pkg_install-20170419.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/pkg_install/sbin/Makefile.inc
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/pkg_install/sbin/pkg_add/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/sbin/Makefile.inc
diff -u src/external/bsd/pkg_install/sbin/Makefile.inc:1.3 src/external/bsd/pkg_install/sbin/Makefile.inc:1.4
--- src/external/bsd/pkg_install/sbin/Makefile.inc:1.3	Fri Nov  5 09:09:01 2010
+++ src/external/bsd/pkg_install/sbin/Makefile.inc	Thu Apr 20 13:18:47 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.3 2010/11/05 09:09:01 he Exp $
+# $NetBSD: Makefile.inc,v 1.4 2017/04/20 13:18:47 joerg Exp $
 
 .include 
 
@@ -12,8 +12,8 @@ CPPFLAGS+=	-DBINDIR='"${BINDIR}"'
 DPADD+=	${LIBINSTALL}/libinstall.a
 LDADD+=	-L${LIBINSTALL} -linstall -ltermcap
 
-DPADD+=		${LIBFETCH} ${LIBSSL} ${LIBCRYPTO}
-LDADD+=		-lfetch -lssl -lcrypto
+DPADD+=		${LIBNETPGPVERIFY} ${LIBFETCH} ${LIBSSL} ${LIBCRYPTO}
+LDADD+=		-lnetpgpverify -lfetch -lssl -lcrypto
 
 DPADD+=		${LIBARCHIVE}
 LDADD+=		-larchive

Index: src/external/bsd/pkg_install/sbin/pkg_add/Makefile
diff -u src/external/bsd/pkg_install/sbin/pkg_add/Makefile:1.2 src/external/bsd/pkg_install/sbin/pkg_add/Makefile:1.3
--- src/external/bsd/pkg_install/sbin/pkg_add/Makefile:1.2	Mon Feb  2 20:47:21 2009
+++ src/external/bsd/pkg_install/sbin/pkg_add/Makefile	Thu Apr 20 13:18:47 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2009/02/02 20:47:21 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2017/04/20 13:18:47 joerg Exp $
 # Original from FreeBSD, no rcs id.
 
 PROG= pkg_add
@@ -8,6 +8,6 @@ SRCS= main.c perform.c
 
 .PATH:	${DIST}/add
 
-CPPFLAGS+=	-DMACHINE_ARCH=\"${MACHINE_ARCH}\"
+CPPFLAGS+=	-DPKGSRC_MACHINE_ARCH=\"${MACHINE_ARCH}\"
 
 .include 



CVS commit: src/external/bsd/pkg_install/sbin

2010-11-05 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Fri Nov  5 09:09:01 UTC 2010

Modified Files:
src/external/bsd/pkg_install/sbin: Makefile.inc

Log Message:
New pkg_install requires -llzma, so to support static linking, be
explicit about what libraries are required, and not only depend on
shared library inter-dependencies to pull that in.
Fixes the build for sun2.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/pkg_install/sbin/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/sbin/Makefile.inc
diff -u src/external/bsd/pkg_install/sbin/Makefile.inc:1.2 src/external/bsd/pkg_install/sbin/Makefile.inc:1.3
--- src/external/bsd/pkg_install/sbin/Makefile.inc:1.2	Mon Feb  2 20:47:21 2009
+++ src/external/bsd/pkg_install/sbin/Makefile.inc	Fri Nov  5 09:09:01 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.2 2009/02/02 20:47:21 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.3 2010/11/05 09:09:01 he Exp $
 
 .include bsd.own.mk
 
@@ -20,3 +20,6 @@
 
 DPADD+=		${LIBZ} ${LIBBZ2}
 LDADD+=		-lz -lbz2
+
+DPADD+=		${LIBLZMA}
+LDADD+=		-llzma