diff options
author | bapt <bapt@FreeBSD.org> | 2012-02-23 01:51:26 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-02-23 01:51:26 +0800 |
commit | 5f6f8f3ee78013f3e433132d1ae05bd15e41ac7d (patch) | |
tree | 87320f13914cd3ba3fd6246337e2d58d500b7164 | |
parent | 2287f91f16f8dbb31afecf538c283d76a43c730b (diff) | |
download | freebsd-ports-gnome-5f6f8f3ee78013f3e433132d1ae05bd15e41ac7d.tar.gz freebsd-ports-gnome-5f6f8f3ee78013f3e433132d1ae05bd15e41ac7d.tar.zst freebsd-ports-gnome-5f6f8f3ee78013f3e433132d1ae05bd15e41ac7d.zip |
- update to 1.0-beta7
- changes:
* move commands man pages from section 1 to 8
* pkg check can now be run as a user (will print the missing dependencies if any)
* better handling of database creation error
* new option -f to install subcommand to force reinstallation of a package
* new option -f to upgrade subcommand to force reinstallation of the whole set of packages
* pkg audit can now take a package: name-version in argument
-rw-r--r-- | ports-mgmt/pkg/Makefile | 60 | ||||
-rw-r--r-- | ports-mgmt/pkg/distinfo | 4 |
2 files changed, 32 insertions, 32 deletions
diff --git a/ports-mgmt/pkg/Makefile b/ports-mgmt/pkg/Makefile index 701f3ddd52df..fc826634533b 100644 --- a/ports-mgmt/pkg/Makefile +++ b/ports-mgmt/pkg/Makefile @@ -6,7 +6,7 @@ # PORTNAME= pkg -DISTVERSION= 1.0-beta6 +DISTVERSION= 1.0-beta7 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/portmgr \ http://files.etoilebsd.net/pkg/ @@ -18,37 +18,28 @@ LICENSE= BSD USE_BZIP2= yes -#define PKG_DEPENDS to nothing to avoid infinite loop looking for pkg :) -.if defined(WITH_PKGNG) -PKG_DEPENDS= -.undef INSTALLS_DEPENDS -.if !exists(${LOCALBASE}/sbin/pkg) -PKG_BIN= ${WRKSRC}/pkg-static/pkg-static -.endif -.endif - USE_LDCONFIG= yes MANCOMPRESSED= yes MAKE_ENV+= WITHOUT_PROFILE=yes -MAN1= pkg.1 \ - pkg-add.1 \ - pkg-autoremove.1 \ - pkg-backup.1 \ - pkg-create.1 \ - pkg-delete.1 \ - pkg-info.1 \ - pkg-install.1 \ - pkg-query.1 \ - pkg-register.1 \ - pkg-repo.1 \ - pkg-search.1 \ - pkg-update.1 \ - pkg-updating.1 \ - pkg-upgrade.1 \ - pkg-version.1 \ - pkg-which.1 +MAN8= pkg.8 \ + pkg-add.8 \ + pkg-autoremove.8 \ + pkg-backup.8 \ + pkg-create.8 \ + pkg-delete.8 \ + pkg-info.8 \ + pkg-install.8 \ + pkg-query.8 \ + pkg-register.8 \ + pkg-repo.8 \ + pkg-search.8 \ + pkg-update.8 \ + pkg-updating.8 \ + pkg-upgrade.8 \ + pkg-version.8 \ + pkg-which.8 MAN5= pkg.conf.5 PLIST_FILES= sbin/pkg \ @@ -59,13 +50,22 @@ PLIST_FILES= sbin/pkg \ lib/libpkg.so \ lib/libpkg.a -post-install: - @${INSTALL_SCRIPT} ${WRKSRC}/ports/pkg2ng ${PREFIX}/sbin - .include <bsd.port.pre.mk> +#define PKG_DEPENDS to nothing to avoid infinite loop looking for pkg :) +.if defined(WITH_PKGNG) +PKG_DEPENDS= +.undef INSTALLS_DEPENDS +.if !exists(${LOCALBASE}/sbin/pkg) +PKG_BIN= ${WRKSRC}/pkg-static/pkg-static +.endif +.endif + .if ${OSVERSION} < 800505 IGNORE= not supported on 7.x or early 8.0 .endif +post-install: + @${INSTALL_SCRIPT} ${WRKSRC}/ports/pkg2ng ${PREFIX}/sbin + .include <bsd.port.post.mk> diff --git a/ports-mgmt/pkg/distinfo b/ports-mgmt/pkg/distinfo index b51e4c028e6e..16568cfb9a38 100644 --- a/ports-mgmt/pkg/distinfo +++ b/ports-mgmt/pkg/distinfo @@ -1,2 +1,2 @@ -SHA256 (pkg-1.0-beta6.tar.bz2) = a663f6285881c26b0286f053924f1218b90a3e1010c1e1dcf5cd51439393c2d6 -SIZE (pkg-1.0-beta6.tar.bz2) = 1469115 +SHA256 (pkg-1.0-beta7.tar.bz2) = 68861baa4a5628bf0d2e8083783d122e5a194ccf0fe904ffa85d35042e422100 +SIZE (pkg-1.0-beta7.tar.bz2) = 1471475 |