diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-01-13 22:19:52 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-01-13 22:19:52 +0000 |
commit | d360ebfe0eb0e48352367d73b0b043db28ad18e0 (patch) | |
tree | 9f8c4f575aaf312fb498866f8a2047f104a36d86 /audio/wmsmixer | |
parent | 18c7f72cf1687e535ea290282c7caa1689f79e22 (diff) | |
download | freebsd-ports-d360ebfe0eb0e48352367d73b0b043db28ad18e0.zip |
- Add LICENSE
- Switch to options helpers
Diffstat (limited to 'audio/wmsmixer')
-rw-r--r-- | audio/wmsmixer/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/audio/wmsmixer/Makefile b/audio/wmsmixer/Makefile index cd44bee4d8ac..95b94ebd773d 100644 --- a/audio/wmsmixer/Makefile +++ b/audio/wmsmixer/Makefile @@ -10,17 +10,22 @@ MASTER_SITES= http://redundancy.redundancy.org/mirror/ MAINTAINER= ports@FreeBSD.org COMMENT= Audio mixer for the WindowMaker dock -OPTIONS_DEFINE= DOCS - -PLIST_FILES= bin/wmsmixer -PORTDOCS= README +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING USES= alias imake USE_XORG= xpm MAKE_ARGS= CC="${CXX}" CFLAGS="${CXXFLAGS}" +PLIST_FILES= bin/wmsmixer +PORTDOCS= README + +OPTIONS_DEFINE= DOCS + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmsmixer ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} |