Date: Sun, 18 Jul 1999 03:45:21 -0600 (MDT) From: handy@physics.montana.edu To: FreeBSD-gnats-submit@freebsd.org Subject: ports/12691: windowmaker fixes Message-ID: <199907180945.DAA44659@lambic.physics.montana.edu>
next in thread | raw e-mail | index | archive | help
>Number: 12691 >Category: ports >Synopsis: configure fixes for windowmaker >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 18 02:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brian Handy >Release: FreeBSD 4.0-CURRENT i386 >Organization: MSU - Bozeman >Environment: >Description: Update configure args to reflect reality. Also add hooks for compiling in gnome and KDE support. >How-To-Repeat: >Fix: diff -urN windowmaker.orig/Makefile windowmaker/Makefile --- windowmaker.orig/Makefile Sat Jul 17 02:24:30 1999 +++ windowmaker/Makefile Sun Jul 18 03:38:01 1999 @@ -29,14 +29,29 @@ CPPFLAGS=-I${LOCALBASE}/include CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \ --with-nlsdir=${LOCALBASE}/lib/locale \ - --with-gfx-libs="-L${LOCALBASE}/lib" \ - --with-gfx-incs="-I${LOCALBASE}/include" \ + --with-libs-from="-L${LOCALBASE}/lib" \ + --with-incs-from="-I${LOCALBASE}/include" \ --disable-debug MAN1= geticonset.1x getstyle.1x seticons.1x setstyle.1x \ wdwrite.1x wmaker.1x wmsetbg.1x wxcopy.1x wxpaste.1x DATAFILES= WindowMaker-extra-0.1.tar.bz2 + +.if defined(USE_GNOME) +CONFIGURE_ARGS+= --enable-gnome +.endif + +.if defined(USE_KDE) +CONFIGURE_ARGS+= --enable-kde +.endif + +.SILENT: + +.if !defined(USE_KDE) && !defined(USE_GNOME) +pre-extract: + ${ECHO} "You can add hooks for Gnome and KDE by defining USE_GNOME and/or USE_KDE" +.endif post-patch: @perl -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/WPrefs.app/Paths.c \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199907180945.DAA44659>