mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
069fdc6476
- USES gmake instead of USE_GMAKE - Support STAGEDIR - Add DOCS Option - Change REINPLACE_CMD, change lmarbles.desktop.in - Disable all warnings with -w - Fix permissions and change owner Approved by: pawel / wg (mentors, implicit)
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
# Created by: verm@drunkmonk.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lmarbles
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/lgames/${PORTNAME} \
|
|
SF/nemysisfreebsdp/${CATEGORIES}/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}_icons${EXTRACT_SUFX}:icons
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= Atomix-like game of moving marbles in puzzles
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake
|
|
USE_SDL= sdl mixer
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --localstatedir=${ETCDIR}
|
|
|
|
PORTDOCS= *
|
|
|
|
DOCSRCDIR1= ${WRKSRC}
|
|
DOC_FILES1= AUTHORS ChangeLog README README-SDL.txt
|
|
|
|
DOCSRCDIR2= ${WRKSRC}/src/manual
|
|
DOCSDIR2= ${DOCSDIR}/manual
|
|
DOC_FILES2= *.jpg *.html
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|(datadir)/icons|(datadir)/pixmaps|g ; \
|
|
s|(datadir)/pixmaps/lmarbles48.gif|(datadir)/pixmaps/lmarbles48.png|' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|@CFLAGS@|@CFLAGS@ -w| ; \
|
|
s|-m 666||g ; \
|
|
s|lmarbles.prfs|lmarbles.prfs.sample|g' \
|
|
${WRKSRC}/src/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|icons/lmarbles48.gif|icons/lmarbles48.png|' \
|
|
${WRKSRC}/lmarbles.desktop.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
@${CHMOD} -R 464 ${STAGEDIR}${ETCDIR}/lmarbles.prfs.sample
|
|
@${CHOWN} root:games ${STAGEDIR}${ETCDIR}/lmarbles.prfs.sample
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR2}
|
|
${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2}
|
|
|
|
.include <bsd.port.mk>
|