mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
6568aaa8f0
PR: ports/173975 Submitted by: nemysis <nemysis@gmx.ch> (maintainer) Feature safe: yes
35 lines
691 B
Makefile
35 lines
691 B
Makefile
# Created by: Andrey Zakhvatov
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= blue
|
|
PORTVERSION= 2.11
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.catb.org/~esr/bluemoon/
|
|
DISTNAME= bluemoon-${PORTVERSION}
|
|
|
|
MAINTAINER= nemysis@gmx.ch
|
|
COMMENT= Blue Moon card solitaire
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= bluemoon
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
PLIST_FILES= bin/blue \
|
|
bin/bluemoon
|
|
|
|
MAN6= bluemoon.6
|
|
MLINKS= bluemoon.6 blue.6
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^CFLAGS=|CFLAGS?=|g ; \
|
|
s|cc |$${CC} |g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bluemoon ${PREFIX}/bin
|
|
@${LN} -sf bluemoon ${PREFIX}/bin/blue
|
|
${INSTALL_MAN} ${MAN6:S|^|${WRKSRC}/|} ${MAN6PREFIX}/man/man6
|
|
|
|
.include <bsd.port.mk>
|