blob: 6bbf55a2d24e80fdcdc212ef0162a1bf659d1930 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# New ports collection makefile for: noegnud-littlehack
# Date created: 7 April 2004
# Whom: Leland Wang <llwang@infor.org>
#
# $FreeBSD$
#
PORTNAME= noegnud
PORTVERSION= 0.8.3
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:noegnud,nethack/}
MASTER_SITE_SUBDIR= ${PORTNAME}/:noegnud \
nethack/:nethack
PKGNAMESUFFIX= -littlehack
DISTFILES= ${DISTNAME}_linux_src-minimal${EXTRACT_SUFX}:noegnud \
nethack-342.tgz:nethack
EXTRACT_ONLY= ${DISTNAME}_linux_src-minimal${EXTRACT_SUFX}
MAINTAINER= llwang@infor.org
COMMENT= The noeGNUd UI for the the LittleHack variation of Nethack
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
NOEGNUDVERSION= ${PORTNAME}-0.8.0
USE_BISON= yes
USE_GL= yes
WANT_SDL= yes
USE_SDL= sdl image mixer
WRKSRC= ${WRKDIR}/${DISTNAME}/variants
PATCH_WRKSRC= ${WRKDIR}/${DISTNAME}
ALL_TARGET= lh001
INSTALL_TARGET= install_lh001
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 502103
USE_REINPLACE= yes
.endif
pre-everything::
.if ${HAVE_SDL}
@${ECHO_MSG} "This port depends on SDL with OpenGL support."
@${ECHO_MSG} "If your SDL does not support OpenGL, hit ^C now and reinstall SDL"
@${ECHO_MSG} "with OpenGL support turned on."
.endif
post-extract:
@${CP} ${DISTDIR}/nethack-342.tgz ${WRKSRC}/tarballs
(cd ${WRKSRC} && ${MAKE} littlehack-0.0.1)
post-patch:
(cd ${WRKSRC} && ${MAKE} ${NOEGNUDVERSION}-littlehack-0.0.1)
@(${PATCH} ${PATCH_ARGS} < ${FILESDIR}/noegnud-littlehack.patch)
.if ${OSVERSION} < 502103
@${REINPLACE_CMD} -e 's/regex\.h/gnuregex\.h/' \
${WRKSRC}/littlehack-0.0.1/src/sounds.c \
${PATCH_WRKSRC}/noegnud/noegnud_textcolour.c \
${PATCH_WRKSRC}/noegnud/noegnud_textcolour.h \
${PATCH_WRKSRC}/noegnud/noegnud_textcolouring.c
.endif
do-configure:
(cd ${WRKSRC} && ${MAKE} ${NOEGNUDVERSION}-littlehack-0.0.1/Makefile)
.include <bsd.port.post.mk>
|