diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-20 08:26:16 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-20 08:26:16 +0000 |
commit | cb146dd529d6294762d070beb4b99e5dd896d8de (patch) | |
tree | 5295e50c7511081f8ba54dc6b8aa56edb029afaf /graphics/eterm-bg | |
parent | 7ecce99decdd4b06c24cc91d1cf1c0138c9ecf46 (diff) |
Support staging
Notes
Notes:
svn path=/head/; revision=345185
Diffstat (limited to 'graphics/eterm-bg')
-rw-r--r-- | graphics/eterm-bg/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/graphics/eterm-bg/Makefile b/graphics/eterm-bg/Makefile index 8e0f4d1cc2f5..e8f7360e10aa 100644 --- a/graphics/eterm-bg/Makefile +++ b/graphics/eterm-bg/Makefile @@ -13,13 +13,12 @@ COMMENT= Image files for background of Eterm NO_WRKSUBDIR= yes NO_BUILD= yes -NO_STAGE= yes do-install: - ${MKDIR} ${PREFIX}/share/Eterm - ${MKDIR} ${PREFIX}/share/Eterm/pix - ${MKDIR} ${PREFIX}/share/Eterm/pix/scale - ${MKDIR} ${PREFIX}/share/Eterm/pix/tile - ${INSTALL_DATA} ${WRKSRC}/bg/scale/* ${PREFIX}/share/Eterm/pix/scale - ${INSTALL_DATA} ${WRKSRC}/bg/tile/* ${PREFIX}/share/Eterm/pix/tile + ${MKDIR} ${STAGEDIR}${PREFIX}/share/Eterm/pix/scale + ${MKDIR} ${STAGEDIR}${PREFIX}/share/Eterm/pix/tile + ${INSTALL_DATA} ${WRKSRC}/bg/scale/* \ + ${STAGEDIR}${PREFIX}/share/Eterm/pix/scale + ${INSTALL_DATA} ${WRKSRC}/bg/tile/* \ + ${STAGEDIR}${PREFIX}/share/Eterm/pix/tile .include <bsd.port.mk> |