summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Zverev <az@FreeBSD.org>2005-10-04 17:22:17 +0000
committerAndrej Zverev <az@FreeBSD.org>2005-10-04 17:22:17 +0000
commit561d2c211098c48fd77a51180e89ac6cff065ba1 (patch)
treec3a9e60563b7107131d77a187ac3787043b4950e
parent- Remove games/pmars-doc, merged with games/pmars (diff)
InterLOGIC is a logic/puzzle game based on an old Amiga game Balls.
The object of the game is to move a differently colored balls through the maze, connecting it with the other same colored balls. PR: ports/86847 Submitted by: Dmitry Marakasov <amdmi3@mail.ru> Approved by: sem (mentor)
Notes
Notes: svn path=/head/; revision=144188
-rw-r--r--games/Makefile1
-rw-r--r--games/interlogic/Makefile31
-rw-r--r--games/interlogic/distinfo2
-rw-r--r--games/interlogic/pkg-descr7
4 files changed, 41 insertions, 0 deletions
diff --git a/games/Makefile b/games/Makefile
index e246a89e38d3..b6e0a3e5abb1 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -265,6 +265,7 @@
SUBDIR += ifm
SUBDIR += imaze
SUBDIR += inform
+ SUBDIR += interlogic
SUBDIR += ishido
SUBDIR += jetpack
SUBDIR += jfduke3d
diff --git a/games/interlogic/Makefile b/games/interlogic/Makefile
new file mode 100644
index 000000000000..69d157251a6f
--- /dev/null
+++ b/games/interlogic/Makefile
@@ -0,0 +1,31 @@
+# New ports collection makefile for: interlogic
+# Date created: 01 Oct 2005
+# Whom: Dmitry Marakasov <amdmi3@mail.ru>
+#
+# $FreeBSD$
+#
+
+PORTNAME= interlogic
+PORTVERSION= 0.30
+CATEGORIES= games
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= interlogic
+DISTNAME= interLOGIC-src-${PORTVERSION}
+
+MAINTAINER= amdmi3@mail.ru
+COMMENT= Move colored balls through the maze connecting it with each other
+
+USE_SDL= image sdl
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= CPPFLAGS="`${SDL_CONFIG} --cflags`" \
+ LDFLAGS="`${SDL_CONFIG} --libs`"
+
+WRKSRC= ${WRKDIR}/interlogic
+
+PLIST_FILES= bin/interlogic
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/src/interlogic ${PREFIX}/bin/
+
+.include <bsd.port.mk>
diff --git a/games/interlogic/distinfo b/games/interlogic/distinfo
new file mode 100644
index 000000000000..23f9812913a0
--- /dev/null
+++ b/games/interlogic/distinfo
@@ -0,0 +1,2 @@
+MD5 (interLOGIC-src-0.30.tar.gz) = 1c1b58a7d5029333611e5d8fe48a8d78
+SIZE (interLOGIC-src-0.30.tar.gz) = 1731894
diff --git a/games/interlogic/pkg-descr b/games/interlogic/pkg-descr
new file mode 100644
index 000000000000..e62e5d415977
--- /dev/null
+++ b/games/interlogic/pkg-descr
@@ -0,0 +1,7 @@
+InterLOGIC is a logic/puzzle game based on an old Amiga game Balls.
+The object of the game is to move a differently colored balls through
+the maze, connecting it with the other same colored balls.
+
+WWW: http://sourceforge.net/projects/interlogic
+
+- Dmitry Marakasov <amdmi3@mail.ru>