forked from Lainports/freebsd-ports
After a discussion on the mailing list on moving manpages to
${PREFIX}/share/man for consistency with base where it is
installed in usr/share/man, it appeared the same should happen
to GNU info files which were installed under share in base and
not in ports.
Now texinfo is not in base on any of the supported version of FreeBSD
it is possible to proceed to this move and it is easier to do than
the manpage change.
Other benefit than consistency are less patching: all build tools but
cmake are expecting info files to be under share/info and cmake (patched here)
was having an exception for BSD so the patch makes FreeBSD case less
specific for them
Bump revision of all impacted ports
PR: 232907
exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D17816
65 lines
1.9 KiB
Makefile
65 lines
1.9 KiB
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= heroes
|
|
PORTVERSION= 0.21
|
|
PORTREVISION= 17
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF \
|
|
SF/${PORTNAME}/${PORTNAME}-data/${DATAVERSION}:data \
|
|
SF/${PORTNAME}/${PORTNAME}-sound-effects/${SOUNDVERSION}:sound \
|
|
SF/${PORTNAME}/${PORTNAME}-sound-tracks/${MUSICVERSION}:music
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
${DATADISTNAME}${EXTRACT_SUFX}:data \
|
|
${SOUNDISTNAME}${EXTRACT_SUFX}:sound \
|
|
${MUSICDISTNAME}${EXTRACT_SUFX}:music
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Game of yore similar to the "Tron" and "Nibbles"
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
DATAVERSION= 1.5
|
|
SOUNDVERSION= 1.0
|
|
MUSICVERSION= 1.0
|
|
DATADISTNAME= ${PORTNAME}-data-${DATAVERSION}
|
|
SOUNDISTNAME= ${PORTNAME}-sound-effects-${SOUNDVERSION}
|
|
MUSICDISTNAME= ${PORTNAME}-sound-tracks-${MUSICVERSION}
|
|
DATASRC= ${WRKDIR}/${DATADISTNAME}
|
|
SOUNDSRC= ${WRKDIR}/${SOUNDISTNAME}
|
|
MUSICSRC= ${WRKDIR}/${MUSICDISTNAME}
|
|
|
|
USE_SDL= mixer sdl
|
|
USES= gettext gmake iconv makeinfo
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= MAKEINFO="${MAKEINFO} --no-split"
|
|
CONFIGURE_ARGS= --with-sdl_mixer=${LOCALBASE} --without-gii --without-ggi
|
|
|
|
OPTIONS_DEFINE= OPTIMIZED_CFLAGS
|
|
|
|
OPTIMIZED_CFLAGS_CONFIGURE_ENABLE= optimizations
|
|
|
|
INFO= heroes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -lpthread -L${LOCALBASE}/lib -lsmpeg -lm
|
|
|
|
post-patch:
|
|
@for dir in ${DATASRC} ${SOUNDSRC} ${MUSICSRC}; do \
|
|
${FIND} $${dir} -name "Makefile*" -delete; \
|
|
done
|
|
@${RM} ${WRKSRC}/lib/getopt.h
|
|
@${RM} ${WRKSRC}/doc/*.info*
|
|
|
|
post-install:
|
|
.for dir in levels pics tilesets
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/${dir}
|
|
${INSTALL_DATA} ${DATASRC}/${dir}/* ${STAGEDIR}${DATADIR}/${dir}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/sfx
|
|
${INSTALL_DATA} ${SOUNDSRC}/*.wav ${SOUNDSRC}/sfx.conf ${STAGEDIR}${DATADIR}/sfx
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/mod
|
|
${INSTALL_DATA} ${MUSICSRC}/*.xm ${MUSICSRC}/sound.conf ${STAGEDIR}${DATADIR}/mod
|
|
|
|
.include <bsd.port.mk>
|