diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-02-09 09:55:21 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-02-09 09:55:21 +0800 |
commit | 92471311fdcae7cf765c723ac5108bd9f462f1ce (patch) | |
tree | d1f030a51b18c17b442377eaa1f3264c6d5ec028 | |
parent | a4ab3847dbbd610bb1711eafd2c9c305ca86f0cc (diff) | |
download | freebsd-ports-gnome-92471311fdcae7cf765c723ac5108bd9f462f1ce.tar.gz freebsd-ports-gnome-92471311fdcae7cf765c723ac5108bd9f462f1ce.tar.zst freebsd-ports-gnome-92471311fdcae7cf765c723ac5108bd9f462f1ce.zip |
- Support STAGEDIR
-rw-r--r-- | irc/rbot/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/irc/rbot/Makefile b/irc/rbot/Makefile index 8008c6b48f0c..ef86a73ec94b 100644 --- a/irc/rbot/Makefile +++ b/irc/rbot/Makefile @@ -14,7 +14,6 @@ COMMENT= Ruby IRC bot similar to infobot RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/bdb.so:${PORTSDIR}/databases/ruby-bdb \ rubygem-gettext>=1.93.0:${PORTSDIR}/devel/rubygem-gettext -NO_STAGE= yes USE_RUBY= yes USE_RUBY_SETUP= yes CONFIGURE_ARGS= --prefix=${PREFIX} @@ -31,9 +30,8 @@ pre-install: post-install: .if ${PORT_OPTIONS:MDOCS} - ${INSTALL} -d ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} + ${INSTALL} -d ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .endif - @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> |