1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00
freebsd-ports/x11-toolkits/otk/Makefile
Niclas Zeising 4c46ca73d8 Add USES=xorg USES=gl, ports categories x
Add USES=xorg and USES=gl to ports in categories starting with 'x'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-11-07 18:36:55 +00:00

39 lines
965 B
Makefile

# Created by: Igor Pokrovsky <ip@doom.homeunix.org>
# $FreeBSD$
PORTNAME= otk
PORTVERSION= 0.96
PORTREVISION= 3
CATEGORIES= x11-toolkits graphics
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION}
DISTNAME= ${PORTNAME}_lib_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Widget library based on OpenGL
LICENSE= LGPL20+
WRKSRC= ${WRKDIR}/${PORTNAME}_lib
USES= gl tar:tgz xorg
USE_XORG= xmu xext x11
USE_GL= glut glu gl
USE_LDCONFIG= yes
PLIST_FILES= include/gadget_lib.h include/otk_lib.h \
lib/libotk.so lib/libotk.so.0
CPPFLAGS+= -I${LOCALBASE}/include -fPIC
LDFLAGS+= -lGLU -lGL -lXmu -lXext -lX11 -L${LOCALBASE}/lib
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} -shared otk_lib.c \
-o libotk.so.0 ${LDFLAGS}
do-install:
${INSTALL_LIB} ${WRKSRC}/libotk.so.0 ${STAGEDIR}${PREFIX}/lib
${LN} -sf libotk.so.0 ${STAGEDIR}${PREFIX}/lib/libotk.so
${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include
.include <bsd.port.mk>