diff options
Diffstat (limited to 'x11/libxklavier/Makefile')
-rw-r--r-- | x11/libxklavier/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/x11/libxklavier/Makefile b/x11/libxklavier/Makefile new file mode 100644 index 000000000..56ad7a82c --- /dev/null +++ b/x11/libxklavier/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: libxklavier +# Date created: 31 May 2002 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# $MCom: ports/x11/libxklavier/Makefile,v 1.35 2007/09/10 15:36:39 mezz Exp $ +# + +PORTNAME= libxklavier +PORTVERSION= 3.4 +PORTEPOCH= 1 +CATEGORIES= x11 gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= gswitchit + +MAINTAINER= gnome@FreeBSD.org +COMMENT= An utility library to make XKB stuff easier + +RUN_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp + +USE_XLIB= yes +USE_GMAKE= yes +USE_GNOME= gnometarget gnomehack libxml2 glib20 +USE_LDCONFIG= yes +USE_GETOPT_LONG=yes +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ARGS= --disable-doxygen \ + --with-xkb-base=${LOCALBASE}/share/X11/xkb \ + --with-xkb-bin-base=${LOCALBASE}/bin \ + --with-xmodmap-base=${LOCALBASE}/share/xmodmap \ + --disable-gtk-doc \ + --with-html-dir=${GNOME_HTML_DIR} +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib" + +PLIST_SUB= VERSION=${PORTVERSION} + +post-patch: + @${REINPLACE_CMD} -e 's|== "yes|= "yes|g' \ + ${WRKSRC}/configure + +.include <bsd.port.mk> |