mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
4f4c6521c9
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# New ports collection makefile for: ssystem
|
|
# Version required: 1.6
|
|
# Date created: 4 August 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= ssystem-1.6
|
|
CATEGORIES= astro
|
|
MASTER_SITES= http://www.geocities.com/SiliconValley/Station/6492/ \
|
|
http://www.msu.edu/user/kamelkev/
|
|
|
|
MAINTAINER= andy@icc.surw.chel.su
|
|
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
MesaGL.14:${PORTSDIR}/graphics/Mesa3 \
|
|
MesaGLU.14:${PORTSDIR}/graphics/Mesa3 \
|
|
glut.3:${PORTSDIR}/graphics/Mesa3
|
|
|
|
MAKEFILE= Makefile.FreeBSD
|
|
FETCH_BEFORE_ARGS= -b
|
|
USE_X_PREFIX= yes
|
|
|
|
do-install:
|
|
@ ${INSTALL_PROGRAM} ${WRKSRC}/ssystem ${PREFIX}/bin
|
|
@ ${MKDIR} ${PREFIX}/share/ssystem
|
|
@ ${INSTALL_DATA} ${WRKSRC}/*.jpg ${PREFIX}/share/ssystem
|
|
@ ${INSTALL_DATA} ${WRKSRC}/stars.dat ${PREFIX}/share/ssystem
|
|
@ ${INSTALL_DATA} ${WRKSRC}/ssystem.conf ${PREFIX}/etc
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@ ${MKDIR} ${PREFIX}/share/doc/ssystem
|
|
.for file in CHANGES LEEME LICENSE README README.3D TODO
|
|
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/ssystem
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|