diff options
author | dougb <dougb@FreeBSD.org> | 2012-08-22 05:00:33 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2012-08-22 05:00:33 +0800 |
commit | b27652b43bdb1dc4a973d1db0d0da523579e215b (patch) | |
tree | 687cc3167fd1d7bdcfa54b68496dfda41bdf40fa /net-mgmt | |
parent | 0ebe4ddc54831b4e06084ce6d046dbba142175ce (diff) | |
download | freebsd-ports-gnome-b27652b43bdb1dc4a973d1db0d0da523579e215b.tar.gz freebsd-ports-gnome-b27652b43bdb1dc4a973d1db0d0da523579e215b.tar.zst freebsd-ports-gnome-b27652b43bdb1dc4a973d1db0d0da523579e215b.zip |
Fix problem introduced in r302141. The directory for the unpacked source
files is unversioned, so it conflicts with the name of the rc.d script in
WRKDIR after SUB_FILES is applied.
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/ipacctd/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-mgmt/ipacctd/Makefile b/net-mgmt/ipacctd/Makefile index 5abeacb81035..411ede3422d4 100644 --- a/net-mgmt/ipacctd/Makefile +++ b/net-mgmt/ipacctd/Makefile @@ -16,13 +16,15 @@ COMMENT= IP accounting using divert socket USE_RC_SUBR= ipacctd -WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ENV+= BINDIR="${PREFIX}/sbin" MAN8= ipacctd.8 MANLANG= "" ru.KOI8-R MANCOMPRESSED= yes +post-extract: + @${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC} + post-install: .ifndef(NOPORTDOCS) @${ECHO_MSG} "===> Installing documentation for ${PKGNAME}" |