mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
efa63f6ba4
FreeBSD versions: 5.3 and up, 6.x, 7.x, 8-CURRENT
44 lines
984 B
Makefile
44 lines
984 B
Makefile
# 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= 5
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= A customizable program to run programs, with tab-completion
|
|
|
|
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
|
|
|
|
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>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/select_executables_only(const struct dirent/ s,const ,,' \
|
|
${WRKSRC}/src/gtkcompletionline.cc
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|