diff options
Diffstat (limited to 'x11/dasher/Makefile')
-rw-r--r-- | x11/dasher/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/x11/dasher/Makefile b/x11/dasher/Makefile new file mode 100644 index 000000000..01d61b4b7 --- /dev/null +++ b/x11/dasher/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: dasher +# Date created: 14 December 2003 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= dasher +PORTVERSION= 3.2.1 +CATEGORIES= x11 gnome accessibility +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/3.2 +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= An information-efficient text-entry interface + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack lthack gnomehier gconf2 libglade2 +USE_LIBTOOL= yes +USE_REINPLACE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +MAN1= dasher.1 + +post-patch: + @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-O2||g' + +.include <bsd.port.mk> |