blob: 46d3a5ed839a9fe1752d2b9c4654fb99ae5d149a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Created by: Karsten Brandt <kbrandt@sdf-eu.org>
# $FreeBSD$
PORTNAME= quadra
PORTVERSION= 1.3.0
PORTREVISION= 6
CATEGORIES= games
MASTER_SITES= http://kbrandt.sdf-eu.org/FreeBSD/distfiles/ \
ftp://ftp.bsdforen.de/pub/BSDForen/distfiles/ \
http://bsd-geek.de/FreeBSD/distfiles/
MAINTAINER= kbrandt@sdf-eu.org
COMMENT= Tetris like game with multiplayer support
LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
USES= gmake tar:bzip2
USE_SDL= sdl
USE_XORG= x11 xau xdmcp
USE_AUTOTOOLS= autoconf autoheader
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_FILES= bin/${PORTNAME} \
share/games/${PORTNAME}.res \
share/pixmaps/${PORTNAME}.xpm
PLIST_DIRSTRY= share/games
DESKTOP_ENTRIES= "Quadra" "${COMMENT}" \
"${PREFIX}/share/pixmaps/${PORTNAME}.xpm" \
"${PORTNAME}" "BlocksGame;Game;" false
# maintainer relevant make target:
SVN_REV= 757
SVN_SRC= http://quadra.googlecode.com/svn/trunk/quadra/
maint-gen-distfile:
@if [ -f ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} ]; then \
${ECHO_CMD} "ERROR: the distfile already exists."; \
${FALSE}; \
fi
svn export -r${SVN_REV} ${SVN_SRC} ${PORTNAME}-${PORTVERSION}
${TAR} cjf ${DISTDIR}/${DISTNAME}.tar.bz2 ${PORTNAME}-${PORTVERSION}
${RM} -rf ${PORTNAME}-${PORTVERSION}
.include <bsd.port.mk>
|