blob: aed8d38fe9668f4a93eef11054791bfc56eb9a48 (
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
37
38
39
|
# ex:ts=8
# Ports collection makefile for: g2c
# Date created: Mar 21, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= g2c
PORTVERSION= 0.4
CATEGORIES= devel gnome
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
PORTCOMMENT= Glade to C translator
BROKEN= "Configure fails"
USE_REINPLACE= yes
USE_GNOMENG= yes
USE_GNOME= gtk12 gnomehack
WANT_GNOME= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
.include <bsd.port.pre.mk>
.if ${HAVE_GNOME:Mbonobo} != "" && ${HAVE_GNOME:Mgnomedb} != ""
USE_GNOME+= gnomeprefix bonobo gnomedb
PKGNAMESUFFIX= -gnome
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
.include <bsd.port.post.mk>
|