diff options
author | cy <cy@FreeBSD.org> | 2003-11-08 12:35:29 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2003-11-08 12:35:29 +0800 |
commit | 59993c91c5bb9c3e9431476ed4964673aca93961 (patch) | |
tree | b36c5008d1b0cdb7d6e5b1fd00b6373549da0e42 /x11-wm | |
parent | 0ff9a06335f848f26e303705ed1f2fe8ebf5c427 (diff) | |
download | freebsd-ports-gnome-59993c91c5bb9c3e9431476ed4964673aca93961.tar.gz freebsd-ports-gnome-59993c91c5bb9c3e9431476ed4964673aca93961.tar.zst freebsd-ports-gnome-59993c91c5bb9c3e9431476ed4964673aca93961.zip |
1. Iconv is required to fix segmentation violations and bus errors,
see http://www.hpc.uh.edu/fvwm/archive/0311/msg00049.html.
2. Use LOCALBASE to locate iconv instead of /usr/local.
PR: 59032 (for #1)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/fvwm2-devel/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/x11-wm/fvwm2-devel/Makefile b/x11-wm/fvwm2-devel/Makefile index 2f527efc0f9e..8f2a5fa7f9cf 100644 --- a/x11-wm/fvwm2-devel/Makefile +++ b/x11-wm/fvwm2-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= fvwm PORTVERSION= 2.5.8 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ \ http://www.fvwm.org/generated/icon_download/ @@ -21,7 +22,10 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= cy@FreeBSD.org COMMENT= Popular virtual window manager for X -LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/Xft +CONFIGURE_ARGS= --with-iconv-library=${LOCALBASE}/lib \ + --with-iconv-includes=${LOCALBASE}/include +LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/Xft \ + biconv.2:${PORTSDIR}/converters/iconv RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 .if defined(WITH_STROKE) @@ -59,12 +63,6 @@ CONFIGURE_ARGS+= --with-png --with-png-includes=${LOCALBASE}/include \ --with-png-library=${LOCALBASE}/lib .endif -.if !defined(WITHOUT_ICONV) -LIB_DEPENDS+= biconv.2:${PORTSDIR}/converters/iconv -CONFIGURE_ARGS+= --with-iconv-lib=/usr/local/lib \ - --with-iconv-includes=/usr/local/include -.endif - .if defined(WITHOUT_BIDI) CONFIGURE_ARGS+= --disable-bidi .endif |