diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-02-21 18:14:16 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-02-21 18:14:16 +0800 |
commit | 801e8d2036d67fa398cae34583c99e688230cb87 (patch) | |
tree | 5599dd69db4937f28d49d06d0fcba145dc7d137a /math | |
parent | 5adc904d0ba9c2819aad10ecc7e114af24c92d0a (diff) | |
download | freebsd-ports-gnome-801e8d2036d67fa398cae34583c99e688230cb87.tar.gz freebsd-ports-gnome-801e8d2036d67fa398cae34583c99e688230cb87.tar.zst freebsd-ports-gnome-801e8d2036d67fa398cae34583c99e688230cb87.zip |
- Support staging
- Define LICENSE
- Strip binary
- Add additional mirrors
- Take maintainership
Diffstat (limited to 'math')
-rw-r--r-- | math/aamath/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/math/aamath/Makefile b/math/aamath/Makefile index 4d01ddf6e1d2..7f4f30bcd3ff 100644 --- a/math/aamath/Makefile +++ b/math/aamath/Makefile @@ -5,19 +5,21 @@ PORTNAME= aamath PORTVERSION= 0.3 PORTREVISION= 1 CATEGORIES= math textproc -MASTER_SITES= http://fuse.superglue.se/${PORTNAME}/ +MASTER_SITES= http://fuse.superglue.se/${PORTNAME}/ \ + CRITICAL -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ehaupt@FreeBSD.org COMMENT= Renders ASCII art from mathematical expressions +LICENSE= GPLv2 + WRKSRC= ${WRKDIR}/${PORTNAME} -PLIST_FILES= bin/${PORTNAME} -MAN1= ${PORTNAME}.1 +PLIST_FILES= bin/aamath man/man1/aamath.1.gz -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1 + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include <bsd.port.mk> |