mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
- Fix building after removal of objformat(1).
- Clean up. - Remove code for handling our previous SDL non-standard location. - Merge post-install with do-install. - Remove some useless comments.
This commit is contained in:
parent
f630b1a36e
commit
7c8889b41b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188604
@ -19,47 +19,25 @@ COMMENT= An overhead, OpenGL space shooter
|
||||
BUILD_DEPENDS= ${X11BASE}/lib/libftgl.a:${PORTSDIR}/graphics/ftgl
|
||||
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GL= yes
|
||||
USE_SDL= sdl
|
||||
REINPLACE_ARGS= -i ''
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="`${SDL_CONFIG} --cflags` `freetype-config --cflags` -I${X11BASE}/include -I${X11BASE}/include/FTGL" \
|
||||
LDFLAGS="`${SDL_CONFIG} --libs` -L${X11BASE}/lib"
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
SUB_FILES= ${PORTNAME}-sh
|
||||
|
||||
post-patch:
|
||||
# Fix SDL include statement
|
||||
.for f in *.cpp *.h
|
||||
@${FIND} ${WRKSRC}/src -type f -name ${f} -print0 | \
|
||||
${XARGS} -0 \
|
||||
${REINPLACE_CMD} -e 's|\(#include.*\)SDL/\(SDL.*\)|\1\2|'
|
||||
.endfor
|
||||
|
||||
# Remove -lSDL flag
|
||||
@${REINPLACE_CMD} -e 's|-lSDL ||' ${WRKSRC}/src/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
|
||||
|
||||
do-install:
|
||||
# Script
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}-sh ${PREFIX}/bin/${PORTNAME}
|
||||
|
||||
# Program
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/libexec
|
||||
|
||||
# Data
|
||||
${MKDIR} ${DATADIR}
|
||||
${CP} -R ${WRKSRC}/runDir/* ${DATADIR}
|
||||
|
||||
post-install:
|
||||
# Fix permissions
|
||||
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR}
|
||||
${FIND} ${DATADIR} -type f -print0 | \
|
||||
${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
||||
${FIND} ${DATADIR} -type d -print0 | \
|
||||
${XARGS} -0 ${CHMOD} ${BINMODE}
|
||||
${FIND} ${DATADIR} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
||||
${FIND} ${DATADIR} -type d -print0 | ${XARGS} -0 ${CHMOD} ${BINMODE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
Loading…
x
Reference in New Issue
Block a user