diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-09-04 16:23:56 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-09-04 16:23:56 +0000 |
commit | d7e7bddf1e65ccc6e9a342918028b0e9c5d43125 (patch) | |
tree | 46fe3a1c4031b161ef1b875567234434c9d75a1a | |
parent | databases/mariadb55-client: update 5.5.38 -> 5.5.39 (diff) |
Add USES=dos2unix. PORTREVISION bump.
While here, wrap compound statements.
Notes
Notes:
svn path=/head/; revision=367287
-rw-r--r-- | math/glm/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/math/glm/Makefile b/math/glm/Makefile index e650df37ec95..64b9e59c5849 100644 --- a/math/glm/Makefile +++ b/math/glm/Makefile @@ -3,6 +3,7 @@ PORTNAME= glm PORTVERSION= 0.9.5.4 +PORTREVISION= 1 CATEGORIES= math graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ogl-math/${PORTNAME}-${PORTVERSION} @@ -10,11 +11,11 @@ MASTER_SITE_SUBDIR= ogl-math/${PORTNAME}-${PORTVERSION} MAINTAINER= demon@FreeBSD.org COMMENT= C++ mathematics library for software based on the OpenGL GLSL -USES= zip +USES= zip dos2unix NO_BUILD= yes WRKSRC= ${WRKDIR}/${PORTNAME} do-install: - cd ${WRKSRC} && ${FIND} glm -print -depth | ${CPIO} -pdm ${STAGEDIR}${PREFIX}/include/ + (cd ${WRKSRC} && ${FIND} glm -print -depth | ${CPIO} -pdm ${STAGEDIR}${PREFIX}/include/) .include <bsd.port.mk> |