da3162c7c9
Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
# Created by: Kimura Fuyuki <fuyuki@hadaly.org>
|
|
|
|
PORTNAME= gl
|
|
PORTVERSION= 0.6
|
|
PORTREVISION= 5
|
|
CATEGORIES= graphics scheme
|
|
MASTER_SITES= SF/gauche/Gauche-gl
|
|
PKGNAMEPREFIX= gauche-
|
|
DISTNAME= Gauche-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= OpenGL binding for Gauche
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= gosh:lang/gauche
|
|
RUN_DEPENDS= gosh:lang/gauche
|
|
|
|
USES= gl localbase makeinfo tar:tgz xorg
|
|
USE_CSTD= gnu99
|
|
USE_XORG= ice sm x11 xext xmu xi
|
|
USE_GL= gl glu glut
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
GAUCHE_ABI= 0.97
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/gauche/${PORTNAME}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/gauche/${PORTNAME}
|
|
|
|
PLIST_SUB= TARGET="${CONFIGURE_TARGET}" ABI_VER=${GAUCHE_ABI}
|
|
|
|
INFO= gauche-gl-refe gauche-gl-refj
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
post-patch:
|
|
.for i in configure src/gauche-gl.c src/gauche-gl.h src/glut-lib.stub
|
|
@${REINPLACE_CMD} -e '/glut.h/s|GLUT|GL|' ${WRKSRC}/${i}
|
|
.endfor
|
|
|
|
do-install:
|
|
.for i in src lib
|
|
@(cd ${WRKSRC}/${i} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \
|
|
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
|
|
.endfor
|
|
.for i in ${INFO}
|
|
${GZCAT} ${WRKSRC}/doc/${i}.info.gz \
|
|
> ${STAGEDIR}${PREFIX}/${INFO_PATH}/${i}.info
|
|
.endfor
|
|
@(cd ${STAGEDIR}${PREFIX}/lib/gauche-${GAUCHE_ABI}/site/${CONFIGURE_TARGET} && \
|
|
${CHMOD} u+w libgauche-*.so && ${STRIP_CMD} libgauche-*.so && \
|
|
${CHMOD} u-w libgauche-*.so)
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|