1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/x11-fm/tdfsb/Makefile
Sergey Matveychuk b4d2ac42d7 - Update graphics/libglut to 6.4.1.
- Shared lib version and PORTREVISION bumb for all affected ports.

While I'm here:
- Remove USE_MESA knob where it was (35 ports).
  It marked as depricated for 2 years.

PR:		ports/90247
Submitted by:	Ermal Lu?i <eri--@albabsd.org>
2006-01-12 12:54:32 +00:00

55 lines
1.3 KiB
Makefile

# New ports collection makefile for: TDFSB
# Date created: 31 Jul 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= tdfsb
PORTVERSION= 0.0.9
PORTREVISION= 1
CATEGORIES= x11-fm
MASTER_SITES= http://www.determinate.net/webdata/data/
MAINTAINER= alejandro@varnet.biz
COMMENT= A 3D filesystem browser
LIB_DEPENDS= smpeg.1:${PORTSDIR}/multimedia/smpeg \
glut.4:${PORTSDIR}/graphics/libglut
USE_GL= yes
USE_REINPLACE= yes
USE_SDL= image sdl
USE_X_PREFIX= yes
PLIST_FILES= bin/${PORTNAME}
PORTDOCS= README
COMPILE_SCRIPT= compile.sh
do-build:
@(cd ${BUILD_WRKSRC}; ${SH} ${COMPILE_SCRIPT})
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.pre.mk>
post-patch:
# Dirty hack below (ripping -lm) is needed in order to build the port on
# NVidia-infected system. Without it, it may complain on conflicting
# libm.so versions (x11/nvidia-driver gets one via misc/compat5x port).
# However, since libGLU.so already depends on it, we should be fine.
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}| ; \
s|gcc|${CC}| ; s| -lm|| ; \
s|/usr/local|${LOCALBASE}|g ; \
s|/usr/X11R6|${X11BASE}|g ; \
s|-O2|${CFLAGS}|g' \
${WRKSRC}/${COMPILE_SCRIPT}
.include <bsd.port.post.mk>