diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 13:03:25 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 13:03:25 +0000 |
commit | d96aa38d95dc8d9885acec0a826cf0fd17199648 (patch) | |
tree | b8124e1b26d3492a2efdf76a075756366da04991 /lang | |
parent | 0a9c3f072b20e17c33f6792deb25a27d062eca71 (diff) |
Remove support for pkg_install
Merge back bsd.pkgng.mk into bsd.port.mk
Add a note about @stopdaemon not being supported anymore
With hat: portmgr
Differential Revision: https://reviews.freebsd.org/D693
Notes
Notes:
svn path=/head/; revision=366875
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python/Makefile | 5 | ||||
-rw-r--r-- | lang/python2/Makefile | 5 | ||||
-rw-r--r-- | lang/python3/Makefile | 5 |
3 files changed, 0 insertions, 15 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile index 2100e7455d64..30357ebf55fd 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -54,13 +54,8 @@ PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portupgrade PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portmaster .endif -.if defined(WITH_PKGNG) PKG_LIST= ${PKG_BIN} query -a '%n-%v' PKG_LIST_FILES= ${PKG_INFO} -l -.else -PKG_LIST= ${PKG_INFO} -Ea -PKG_LIST_FILES= ${PKG_INFO} -L -.endif upgrade-site-packages: @if [ ! -x ${PORTUPGRADE_CMD} ]; then \ diff --git a/lang/python2/Makefile b/lang/python2/Makefile index 7cb83c9fedd4..6b0e31e0d1b0 100644 --- a/lang/python2/Makefile +++ b/lang/python2/Makefile @@ -46,12 +46,7 @@ PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portupgrade PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portmaster .endif -.if defined(WITH_PKGNG) PKG_LIST= ${PKG_BIN} query -a '%n-%v' PKG_LIST_FILES= ${PKG_INFO} -l -.else -PKG_LIST= ${PKG_INFO} -Ea -PKG_LIST_FILES= ${PKG_INFO} -L -.endif .include <bsd.port.post.mk> diff --git a/lang/python3/Makefile b/lang/python3/Makefile index 652ebce8c5d8..f5e0b35f9685 100644 --- a/lang/python3/Makefile +++ b/lang/python3/Makefile @@ -48,12 +48,7 @@ PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portupgrade PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portmaster .endif -.if defined(WITH_PKGNG) PKG_LIST= ${PKG_BIN} query -a '%n-%v' PKG_LIST_FILES= ${PKG_INFO} -l -.else -PKG_LIST= ${PKG_INFO} -Ea -PKG_LIST_FILES= ${PKG_INFO} -L -.endif .include <bsd.port.post.mk> |