7ae3f48312
links that were added in r374303 to prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# Created by: Stas Timokhin <stast@bsdportal.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opensonic
|
|
PORTVERSION= 0.1.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/opensnc/Open%20Sonic/${PORTVERSION}
|
|
DISTNAME= opensnc-src-${PORTVERSION}
|
|
|
|
MAINTAINER= devel@stasyan.com
|
|
COMMENT= Game based on the "Sonic the Hedgehog" universe
|
|
|
|
BUILD_DEPENDS= alpng>=1.3:graphics/alpng
|
|
LIB_DEPENDS= liballeg.so:devel/allegro \
|
|
libogg.so:audio/libogg \
|
|
libvorbis.so:audio/libvorbis
|
|
|
|
DESKTOP_ENTRIES="${PORTNAME}" \
|
|
"Sonic the Hedgehog" \
|
|
"${PREFIX}/share/pixmaps/opensonic.png" \
|
|
"${PORTNAME}" \
|
|
"Game;ArcadeGame;" \
|
|
false
|
|
|
|
USES= cmake
|
|
CONFIGURE_ENV+= _ALLEGRO_LIBS="`allegro-config --libs`" \
|
|
_ALLEGRO_VERSION="`allegro-config --version`"
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,/usr/bin,${PREFIX}/bin,g' \
|
|
-e 's,/usr/share,${PREFIX}/share,g' \
|
|
${PATCH_WRKSRC}/src/core/global.h
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/icon.png ${STAGEDIR}${PREFIX}/share/pixmaps/opensonic.png
|
|
${LN} -s ${DATADIR}/opensonic ${STAGEDIR}${PREFIX}/bin/opensonic
|
|
|
|
.include <bsd.port.mk>
|