diff options
author | rene <rene@FreeBSD.org> | 2017-11-14 15:23:21 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 05:56:34 +0800 |
commit | 043c0df8f3dce0fb62cbf36c2f5db8de918a6ce3 (patch) | |
tree | 5f8fb93af92a0b87fcb10305471cdf87fd0268a8 /games | |
parent | dcd773a0e287c0e2c54b7af92739034603dd56f5 (diff) | |
download | freebsd-ports-gnome-043c0df8f3dce0fb62cbf36c2f5db8de918a6ce3.tar.gz freebsd-ports-gnome-043c0df8f3dce0fb62cbf36c2f5db8de918a6ce3.tar.zst freebsd-ports-gnome-043c0df8f3dce0fb62cbf36c2f5db8de918a6ce3.zip |
games/opensurge: does not build, schedule for removal on 2018-02-01
CMakeFiles/opensurge.dir/src/entities/particle.c.o: In function `particle_update_all':
particle.c:(.text+0x113): undefined reference to `image_height'
particle.c:(.text+0x126): undefined reference to `image_width'
particle.c:(.text+0x1f0): undefined reference to `image_width'
particle.c:(.text+0x20f): undefined reference to `image_height'
particle.c:(.text+0x296): undefined reference to `image_width'
particle.c:(.text+0x2b2): undefined reference to `image_height'
collect2: error: ld returned 1 exit status
and other files
Diffstat (limited to 'games')
-rw-r--r-- | games/opensurge/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/opensurge/Makefile b/games/opensurge/Makefile index 6d09d8aa7378..569bf25d4461 100644 --- a/games/opensurge/Makefile +++ b/games/opensurge/Makefile @@ -18,6 +18,9 @@ LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/licenses/GPLv2.txt LICENSE_FILE_CC-BY-SA-3.0= ${WRKSRC}/licenses/CC-BY-SA-3.0.txt +DEPRECATED= Does not build +EXPIRATION_DATE=2018-02-01 + BUILD_DEPENDS= ${LOCALBASE}/lib/libaldmb.a:audio/dumb-allegro \ ${LOCALBASE}/include/alfont.h:x11-fonts/alfont \ alureplay:audio/alure @@ -69,7 +72,7 @@ post-install: .for s in ${ICON_SIZES} @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/ - @${INSTALL_DATA} ${WRKSRC}/src/misc/${PORTNAME}_${s}.png \ + ${INSTALL_DATA} ${WRKSRC}/src/misc/${PORTNAME}_${s}.png \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png .endfor ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \ |