blob: c015589a58cb8b2a5dff928b427bcf280b891ff0 (
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
40
41
42
43
44
45
|
# New ports collection makefile for: gmrun
# Date created: 26 September 2002
# Whom: Adam Weinberger <adam@vectors.cx>
#
# $FreeBSD$
#
PORTNAME= gmrun
PORTVERSION= 0.9.2
PORTREVISION= 4
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A customizable program to run programs, with tab-completion
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
USE_GCC= 3.4+
USE_X_PREFIX= yes
USE_GNOME= gtk20
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --disable-stlport
PORTDOCS= README
PLIST_FILES= bin/gmrun %%DATADIR%%/gmrunrc
PLIST_DIRS= %%DATADIR%%
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64"
BROKEN= Doesn't run, segmentation fault
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|