diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2009-11-08 20:45:05 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2009-11-08 20:45:05 +0800 |
commit | 20e6c56a3ec570cde1c68589972a9326cf14e734 (patch) | |
tree | 3343198938c0630c9ca3c96b2a803d7daf9f4a90 /math/mathomatic/Makefile | |
parent | 4a3df110f49e3447b3ed2eb2fd6ab615c5190b3f (diff) | |
download | freebsd-ports-gnome-20e6c56a3ec570cde1c68589972a9326cf14e734.tar.gz freebsd-ports-gnome-20e6c56a3ec570cde1c68589972a9326cf14e734.tar.zst freebsd-ports-gnome-20e6c56a3ec570cde1c68589972a9326cf14e734.zip |
Update to 14.6.0
Diffstat (limited to 'math/mathomatic/Makefile')
-rw-r--r-- | math/mathomatic/Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile index b31ea5c65ceb..f71e86131bb4 100644 --- a/math/mathomatic/Makefile +++ b/math/mathomatic/Makefile @@ -6,7 +6,7 @@ # PORTNAME= mathomatic -PORTVERSION= 14.5.7 +PORTVERSION= 14.6.0 CATEGORIES= math MASTER_SITES= http://www.panix.com/~gesslein/ \ CRITICAL @@ -20,7 +20,6 @@ MAKE_JOBS_SAFE= yes MAKEFILE= makefile MAKE_ARGS= -DREADLINE -PLIST_FILES= bin/mathomatic PORTDOCS= * MAN1= mathomatic.1 @@ -32,9 +31,20 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mathomatic ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/mathomatic.1 ${PREFIX}/man/man1 + ${MKDIR} ${PREFIX}/share/applications ${PREFIX}/share/pixmaps + ${INSTALL_DATA} ${WRKSRC}/icons/mathomatic.desktop \ + ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/icons/mathomatic.png ${PREFIX}/share/pixmaps .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/changes.txt ${WRKSRC}/doc/* ${DOCSDIR} +.for d in m4 tests factorial + ${MKDIR} ${DOCSDIR}/${d} + ${INSTALL_DATA} ${WRKSRC}/${d}/* ${DOCSDIR}/${d} +.endfor + ${MKDIR} ${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}/html +.for f in AUTHORS README.txt changes.txt + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ +.endfor .endif .include <bsd.port.mk> |