blob: c8c8256f8af2e05cc7c229be0ae63d51944f804a (
plain) (
blame)
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
|
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
# $FreeBSD$
PORTNAME= gnono
PORTVERSION= 1.9.1
PORTREVISION= 7
CATEGORIES= games
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Uno card game
USE_GNOME= gtk20 libgnomeui intltool
USES= gettext gmake pkgconfig tar:bzip2
INSTALLS_ICONS= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
post-patch:
@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -E -e \
's|-DG.*_DISABLE_DEPRECATED||g' -e 's|-Werror||g'
@${REINPLACE_CMD} -e 's|glib/garray.h|glib.h|g' \
-e 's|glib/gmessages.h|glib.h|g' \
-e 's|glib/gtypes.h|glib.h|g' \
-e 's|glib/gmem.h|glib.h|g' \
-e 's|glib/gmain.h|glib.h|g' \
${WRKSRC}/src/ai.[ch] \
${WRKSRC}/src/cards.[ch] \
${WRKSRC}/src/game.[ch] \
${WRKSRC}/src/interface.[ch] \
${WRKSRC}/src/main.c \
${WRKSRC}/src/players.[ch] \
${WRKSRC}/src/preferences.[ch]
.include <bsd.port.mk>
|