mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
be6c15b5c6
Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# Created by: Jean-Yves Lefort <jylefort@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= freetennis
|
|
PORTVERSION= 0.4.8
|
|
PORTREVISION= 15
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tennis simulation
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ocamlopt:lang/ocaml \
|
|
ocaml-images>3.0:graphics/ocaml-images \
|
|
${OCAML_DEPENDS}
|
|
RUN_DEPENDS= ${OCAML_DEPENDS}
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
|
|
OCAML_DEPENDS= ${LOCALBASE}/lib/ocaml/site-lib/lablgtk2/gtk.ml:x11-toolkits/ocaml-lablgtk2 \
|
|
${LOCALBASE}/lib/ocaml/lablGL/gl.ml:graphics/ocaml-lablgl \
|
|
${LOCALBASE}/lib/ocaml/site-lib/sdl/sdl.mli:devel/ocaml-sdl
|
|
|
|
USES= gettext gl gnome sdl tar:bzip2 xorg
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango
|
|
USE_GL= gl glu
|
|
USE_SDL= ttf mixer sdl
|
|
USE_XORG= x11 xext xmu
|
|
|
|
PLIST_FILES= bin/freetennis
|
|
PORTDATA= *
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|sfxDir = "sfx"|sfxDir = "${DATADIR}/sfx"|; \
|
|
s|gfxDir = "graphics"|gfxDir = "${DATADIR}/graphics"|' \
|
|
${WRKSRC}/freetennis.ml
|
|
@${REINPLACE_CMD} -Ee 's@(\+)(lablgtk2)@\1site-lib/\2@' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/freetennis ${STAGEDIR}${PREFIX}/bin
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics sfx" ${STAGEDIR}${DATADIR})
|
|
|
|
.include <bsd.port.mk>
|