b0ff0b23bb
- Trim Makefile header [1] - Remove leading article from COMMENT [1] - Add DOCS option [1] - Install desktop entry/icon [1] - Fix build with clang PR: ports/179948 Submitted by: nemysis <nemysis@gmx.ch> [1] (maintainer)
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# Created by: nemysis <nemysis@gmx.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= founts
|
|
PORTVERSION= 12
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics games
|
|
MASTER_SITES= http://www.linuxmotors.com/founts/downloads/ \
|
|
SF/nemysisfreebsdp/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}.tgz \
|
|
${PORTNAME}.png:icons
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}.tgz
|
|
|
|
MAINTAINER= nemysis@gmx.ch
|
|
COMMENT= Demo/program inspired by Erics cascade
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_SDL= sdl
|
|
CFLAGS= -Wno-return-type
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/pixmaps/${PORTNAME}.png
|
|
|
|
PORTDOCS= Changelog README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DESKTOP_ENTRIES="Founts" "${COMMENT}" "${PORTNAME}" \
|
|
"${PORTNAME}" "Graphics;Game;" false
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
|
|
-lm `${SDL_CONFIG} --cflags --libs` founts.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_DATA} ${DISTDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|