0a3dd03365
game. You pilot your "vi"per craft through core memory, rescuing lost .swp files, avoiding OS defenses, and wiping out those memory hogging emacs processes. When all the lost .swp files are rescued, head for the socket which will take you to the next node in the cluster. From maintainer Pascal Stumpf. ok landry@ Note: this is *not* the version sent to ports@, it's a shiny new release of wordwarvi.
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/06/13 20:33:19 kili Exp $
|
|
|
|
COMMENT = editor war arcade game
|
|
|
|
DISTNAME = wordwarvi-1.00
|
|
|
|
CATEGORIES = games
|
|
|
|
HOMEPAGE = http://wordwarvi.sourceforge.net/
|
|
|
|
MAINTAINER = Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# GPLv2 / CC licenses for soundfiles
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
|
|
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0 c cairo
|
|
WANTLIB += drm expat fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0
|
|
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gthread-2.0
|
|
WANTLIB += gtk-x11-2.0 iconv intl m ogg pango-1.0 pangocairo-1.0
|
|
WANTLIB += pangoft2-1.0 pixman-1 png portaudio pthread pthread-stubs
|
|
WANTLIB += sndio vorbis vorbisfile xcb xcb-render xcb-shm z
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=wordwarvi/}
|
|
|
|
LIB_DEPENDS = audio/libvorbis \
|
|
audio/portaudio-svn \
|
|
x11/gtk+2
|
|
|
|
USE_GMAKE = Yes
|
|
USE_GROFF = Yes
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
ALL_TARGET = wordwarvi
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/wordwarvi.6
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wordwarvi ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/wordwarvi/sounds
|
|
${INSTALL_DATA} ${WRKSRC}/sounds/*.ogg ${PREFIX}/share/wordwarvi/sounds
|
|
${INSTALL_MAN} ${WRKSRC}/wordwarvi.6 ${PREFIX}/man/man6
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/wordwarvi
|
|
.for _f in AUTHORS COPYING changelog.txt
|
|
${INSTALL_DATA} ${WRKSRC}/${_f} ${PREFIX}/share/doc/wordwarvi
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|