Index: UPDATING =================================================================== --- UPDATING (révision 305591) +++ UPDATING (copie de travail) @@ -5,6 +5,25 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121010: + AFFECTS: users of CURRENT + AUTHOR: bapt@FreeBSD.org + + The ports tree is now using pkgng as default package manager on HEAD + to keep pkg_install as default package manager, the new WITHOUT_PKGNG + knob on make.conf + + To do the switch: + + 1/ Upgrade all your ports to the latest available version with + WITHOUT_PKGNG in make.conf using your favorite tool + + 2/ Install ports-mgmt/pkg + + 3/ Remove WITHOUT_PKGNG and run + + # pkg2ng + 20121008: AFFECTS: users of mail/squirrelmail AUTHOR: adamw@FreeBSD.org Index: CHANGES =================================================================== --- CHANGES (révision 305591) +++ CHANGES (copie de travail) @@ -10,6 +10,13 @@ All ports committers are allowed to commit to this file. +20121010: +AUTHOR: bapt@FreeBSD.org + + * The ports tree is now using pkgng as default package manager on HEAD + to keep pkg_install as default package manager, the new WITHOUT_PKGNG + knob on make.conf + 20120830: AUTHOR: beat@FreeBSD.org Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (révision 305595) +++ Mk/bsd.port.mk (copie de travail) @@ -1209,6 +1209,14 @@ .endif .endif +.if ${OSVERSION} >= 1000017 +.if !defined(WITHOUT_PKGNG) +WITH_PKGNG= yes +.else +.undef WITH_PKGNG +.endif +.endif + MASTERDIR?= ${.CURDIR} .if ${MASTERDIR} != ${.CURDIR} Index: Mk/bsd.port.subdir.mk =================================================================== --- Mk/bsd.port.subdir.mk (révision 305591) +++ Mk/bsd.port.subdir.mk (copie de travail) @@ -77,6 +77,14 @@ .endif .endif +.if ${OSVERSION} >= 1000017 +.if !defined(WITHOUT_PKGNG) +WITH_PKGNG= yes +.else +.undef WITH_PKGNG +.endif +.endif + .if !defined(_OSRELEASE) _OSRELEASE!= uname -r .endif