diff options
author | alepulver <alepulver@FreeBSD.org> | 2006-04-25 05:09:30 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2006-04-25 05:09:30 +0800 |
commit | 4b45473db8ae0cf4366ab443933a883750204235 (patch) | |
tree | 22febe36fb2ea248d5d028ca76332bdeab226946 /games/qonk | |
parent | d4601e9f302f7fee5dca68c1903b0c4a1ac7119f (diff) | |
download | freebsd-ports-gnome-4b45473db8ae0cf4366ab443933a883750204235.tar.gz freebsd-ports-gnome-4b45473db8ae0cf4366ab443933a883750204235.tar.zst freebsd-ports-gnome-4b45473db8ae0cf4366ab443933a883750204235.zip |
- Format Makefile comments.
- Format tabs.
Approved by: garga (mentor)
Diffstat (limited to 'games/qonk')
-rw-r--r-- | games/qonk/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/games/qonk/Makefile b/games/qonk/Makefile index 9d861eddd175..43fe60a2c417 100644 --- a/games/qonk/Makefile +++ b/games/qonk/Makefile @@ -21,27 +21,27 @@ OPTIONS= OPTIMIZED_CFLAGS "Enable compilation optimizations" on .include <bsd.port.pre.mk> post-patch: -# Fix Makefile +# Fix Makefile. @${REINPLACE_CMD} -e 's|g++|${CXX}| ; \ - s|sdl-config|${SDL_CONFIG}| ; \ - s|\(-O3\)|${CFLAGS} \1|' \ - ${WRKSRC}/${MAKEFILE} + s|sdl-config|${SDL_CONFIG}| ; \ + s|\(-O3\)|${CFLAGS} \1|' \ + ${WRKSRC}/${MAKEFILE} -# Fix paths to ${DATADIR} +# Fix paths to ${DATADIR}. @${REINPLACE_CMD} -e 's|\(font\.ttf\)|${DATADIR}/\1|' \ - ${WRKSRC}/main.cpp ${WRKSRC}/messages.cpp + ${WRKSRC}/main.cpp ${WRKSRC}/messages.cpp -# Enable/disable compilation optimizations +# Enable/disable compilation optimizations. .if defined(WITHOUT_OPTIMIZED_CFLAGS) @${REINPLACE_CMD} -e 's|-O3||' \ - ${WRKSRC}/${MAKEFILE} + ${WRKSRC}/${MAKEFILE} .endif do-install: -# Program +# Program. ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -# Data +# Data. ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/font.ttf ${DATADIR} |