diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-06-16 16:02:49 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-06-16 16:02:49 +0800 |
commit | 2f91804ec85d34d99fad7ce78bde68c83c35ffdf (patch) | |
tree | d7e39c813e5cec6480829d5499a739381084ade4 /games/vultures-claw | |
parent | c2bd4897be77e76011aec25ed55e5b4b61b09858 (diff) | |
download | freebsd-ports-gnome-2f91804ec85d34d99fad7ce78bde68c83c35ffdf.tar.gz freebsd-ports-gnome-2f91804ec85d34d99fad7ce78bde68c83c35ffdf.tar.zst freebsd-ports-gnome-2f91804ec85d34d99fad7ce78bde68c83c35ffdf.zip |
- Vulture's Claw no longer requires sdl-image as a depedency, so remove
it, and remove a stray reference to SDL_image.h from the source.
Noteced by: Clive Crous, the Vulture's Claw developer
PR: ports/99001
Submitted by: maintainer
Diffstat (limited to 'games/vultures-claw')
-rw-r--r-- | games/vultures-claw/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/vultures-claw/Makefile b/games/vultures-claw/Makefile index e5487d189028..d9d15df45a67 100644 --- a/games/vultures-claw/Makefile +++ b/games/vultures-claw/Makefile @@ -7,6 +7,7 @@ PORTNAME= vultures PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.darkarts.co.za/projects/vultures/downloads/${PORTVERSION}/ PKGNAMESUFFIX= -claw @@ -19,7 +20,7 @@ LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png USE_BZIP2= yes USE_GMAKE= yes -USE_SDL= sdl ttf mixer image +USE_SDL= sdl ttf mixer WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/slashem DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX} @@ -43,5 +44,8 @@ post-configure: @${REINPLACE_CMD} -e \ 's|../$$(BUILD)|../../../$$(BUILD)|g' \ ${WRKSRC}/win/vultures/GNUmakefile + @${REINPLACE_CMD} -e \ + 's|#include <SDL_image.h>||g' \ + ${WRKSRC}/win/vultures/vultures_gfl.c .include <bsd.port.post.mk> |