diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-08-26 02:44:21 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-08-26 02:44:21 +0000 |
commit | 9abebe13540d8052d28245c69cced4e44789f97e (patch) | |
tree | 1bfbe3b4f85e2f52823f7b9cb3a3504b831e8d88 | |
parent | 8de0a40be79f0058771b27f2503838a4ba2ace85 (diff) |
- Add LICENSE_FILE
- Switch to USES=autoreconf
- Switch to options helpers
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=395333
-rw-r--r-- | databases/gqlplus/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/databases/gqlplus/Makefile b/databases/gqlplus/Makefile index e1e642f55fb0..7e40920aa307 100644 --- a/databases/gqlplus/Makefile +++ b/databases/gqlplus/Makefile @@ -10,24 +10,21 @@ MAINTAINER= leeym@FreeBSD.org COMMENT= SQL*PLUS with commandline editing, history, and name completion LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE GNU_CONFIGURE= yes -USES= gmake readline +USES= autoreconf gmake readline PORTDOCS= README ChangeLog PLIST_FILES= bin/gqlplus -USE_AUTOTOOLS= autoconf automake aclocal -AUTOMAKE_ARGS= --add-missing OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif .include <bsd.port.mk> |