mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# New ports collection makefile for: volleyball
|
|
# Date created: 09 Oct 2005
|
|
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= volleyball
|
|
PORTVERSION= 0.8.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.losersjuegos.com.ar/juegos/volleyball/descargas/ \
|
|
http://www.amdmi3.ru/distfiles/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
${PORTNAME}-data-${DATAVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= amdmi3@amdmi3.ru
|
|
COMMENT= A game similar to GNU Arcade Volleyball
|
|
|
|
USE_SDL= sdl image mixer
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lintl"
|
|
CONFIGURE_ARGS= --mandir="${MANPREFIX}/man" --disable-nls # strangeness in nls support
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
USE_GCC= 3.4+
|
|
|
|
PORTDOCS= README
|
|
MAN6= volleyball.6
|
|
|
|
DATAVERSION= 0.8.5
|
|
|
|
post-configure:
|
|
cd ${WRKDIR}/${PORTNAME}-data-${DATAVERSION} && \
|
|
${SETENV} ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
|
|
|
|
post-install:
|
|
cd ${WRKDIR}/${PORTNAME}-data-${DATAVERSION} && \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|