diff options
author | mezz <mezz@FreeBSD.org> | 2006-06-12 12:58:43 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-06-12 12:58:43 +0800 |
commit | b86cc8d4c3812f7f58f2621fdb68c89ce44b1365 (patch) | |
tree | f9d882c6238664cc6cb4f6fbae4e5bdb2e1364ee /textproc/gnome-doc-utils | |
parent | 73e90e9463c57f1bcaa52ced2bda3fd8af02b294 (diff) | |
download | freebsd-ports-graphics-b86cc8d4c3812f7f58f2621fdb68c89ce44b1365.tar.gz freebsd-ports-graphics-b86cc8d4c3812f7f58f2621fdb68c89ce44b1365.tar.zst freebsd-ports-graphics-b86cc8d4c3812f7f58f2621fdb68c89ce44b1365.zip |
Use the correct mtree when you change the prefix, for example:
Incorrect: (before)
================================
# cd /usr/ports/x11-toolkits/pango
# make -V MTREE_FILE
/etc/mtree/BSD.x11-4.dist
# make PREFIX=/tmp/foo -V MTREE_FILE
/etc/mtree/BSD.local.dist <-- Here...
================================
Correct: (after)
================================
# cd /usr/ports/x11-toolkits/pango
# make -V MTREE_FILE
/etc/mtree/BSD.x11-4.dist
# make PREFIX=/tmp/foo -V MTREE_FILE
/etc/mtree/BSD.x11-4.dist <-- Here...
================================
Diffstat (limited to 'textproc/gnome-doc-utils')
-rw-r--r-- | textproc/gnome-doc-utils/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/textproc/gnome-doc-utils/Makefile b/textproc/gnome-doc-utils/Makefile index 9b323ad676b..df5e4f00f5f 100644 --- a/textproc/gnome-doc-utils/Makefile +++ b/textproc/gnome-doc-utils/Makefile @@ -36,7 +36,15 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAN1= xml2po.1 +.include <bsd.port.pre.mk> + +.if ${X_WINDOW_SYSTEM:L} == xfree86-3 +MTREE_FILE= /etc/mtree/BSD.x11.dist +.else +MTREE_FILE= /etc/mtree/BSD.x11-4.dist +.endif + post-install: @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -l ${PREFIX}/share/xml2po -.include <bsd.port.mk> +.include <bsd.port.post.mk> |