diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2014-03-03 21:57:53 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2014-03-03 21:57:53 +0000 |
commit | 5e8af4ec39f77fea934c23f2d2f2b94621b8b0d4 (patch) | |
tree | ea01c6cc88203a8147b5a209fff0e4f6c9f6afa3 /x11-wm/dwm | |
parent | 8e15a19a07ea23798bf5abe36fdcf304dac4ae7d (diff) |
Notes
Diffstat (limited to 'x11-wm/dwm')
-rw-r--r-- | x11-wm/dwm/Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/x11-wm/dwm/Makefile b/x11-wm/dwm/Makefile index 9b09c8aba9d0..96b808cf0a7d 100644 --- a/x11-wm/dwm/Makefile +++ b/x11-wm/dwm/Makefile @@ -15,18 +15,17 @@ COMMENT= Dynamic, small, fast and simple window manager LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= pthread-stubs:${PORTSDIR}/devel/libpthread-stubs +LIB_DEPENDS= libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs OPTIONS_DEFINE= XINERAMA XFT DOCS OPTIONS_DEFAULT=XINERAMA USE_XORG= x11 xau xcb xdmcp xext -MAN1= dwm.1 -PLIST_FILES= bin/dwm +PLIST_FILES= bin/dwm \ + man/man1/dwm.1.gz PORTDOCS= README -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MXINERAMA} @@ -34,9 +33,9 @@ USE_XORG+= xinerama .endif .if ${PORT_OPTIONS:MXFT} -LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 \ - expat:${PORTSDIR}/textproc/expat2 \ - fontconfig:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 \ + libexpat.so:${PORTSDIR}/textproc/expat2 \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig USE_XORG+= xft xrender PATCHFILES+= ${PORTNAME}-${PORTVERSION}-xft.diff .endif @@ -67,11 +66,7 @@ post-patch: .endif post-install: -.if ${PORT_OPTIONS:MDOCS} - @${ECHO_MSG} "installing additional documentation to ${DOCSDIR}" - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |