diff options
author | danilo <danilo@FreeBSD.org> | 2013-12-10 00:52:57 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2013-12-10 00:52:57 +0800 |
commit | a3151d3dddbd2874218baa8a1ee9949c6b13ea7b (patch) | |
tree | 47c4e760f9aaeb7c8f44db85e462d970e8a6823c /misc | |
parent | 2d99aaeb524557e0208adb7d85a05d04f21ec820 (diff) | |
download | freebsd-ports-gnome-a3151d3dddbd2874218baa8a1ee9949c6b13ea7b.tar.gz freebsd-ports-gnome-a3151d3dddbd2874218baa8a1ee9949c6b13ea7b.tar.zst freebsd-ports-gnome-a3151d3dddbd2874218baa8a1ee9949c6b13ea7b.zip |
- Add LICENSE
- Add EXAMPLES option
- Add stage support
Diffstat (limited to 'misc')
-rw-r--r-- | misc/wmtunlo/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/misc/wmtunlo/Makefile b/misc/wmtunlo/Makefile index 83d354032fb8..ca2d21fe1f2f 100644 --- a/misc/wmtunlo/Makefile +++ b/misc/wmtunlo/Makefile @@ -11,16 +11,17 @@ MASTER_SITES= http://www.gnu-darwin.org/distfiles/ \ MAINTAINER= ports@FreeBSD.org COMMENT= Falling-down-a-tunnel dockapp +LICENSE= GPLv2 + USE_XORG= x11 xpm xextproto ALL_TARGET= wmtunlo -NO_STAGE= yes +OPTIONS_DEFINE= EXAMPLES + do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/wmtunlo ${PREFIX}/bin -.ifndef NOPORTEXAMPLES - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_SCRIPT} ${WRKSRC}/examples/* \ - ${EXAMPLESDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/wmtunlo ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/* \ + ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> |