freebsd-ports/x11-wm/jwm/Makefile
Tijl Coosemans 3a55a118dd Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.
These were FreeBSD specific aliases for libiconv(), libiconv_open() and
libiconv_close() that are now also provided by libc which complicates
writing configure tests that work correctly when both libc iconv and
libiconv are available.

Also, because the libiconv iconv.h header redefines iconv* to libiconv*
correct use of the header implies that the aliases aren't used.

The following ports needed fixes because there was something wrong with
the way they tried to detect or use iconv:

audio/deadbeef: Remove LIBICONV_PLUG from a source file.  It's a
compile-time option and should not be set in source code.
comms/hidapi: Use standard AM_ICONV configure macro to look for iconv.
deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG.
deskutils/ljclive: Override configure test for iconv.
deskutils/owncloudclient: Add USES=iconv and patch test for iconv.
devel/aegis: Bump PORTREVISION because it no longer uses libiconv.
devel/libexplain: Add USES=iconv and override test for iconv.
devel/sdl20: Override configure test for iconv.
emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include
<iconv.h> instead of <sys/iconv.h>.
irc/scrollz: Override configure test for iconv.
japanese/chasen-base: Override configure test for iconv and patch
configure so it no longer adds -liconv to linker flags just because it
happens to be installed.
japanses/eb: Patch configure test for iconv.
japanses/eblook: Override configure test for iconv.
java/jikes: Override configure test for iconv.
multimedia/transcode: Bump PORTREVISION because only one plugin links with
libiconv now.
net/c3270: Override configure test for iconv.
net/samba4*: Bump PORTREVISION because it no longer uses libiconv.  The
configure script will always add -liconv to the linker flags when it
happens to be installed which would be wrong but later on binaries are
linked with -Wl,--as-needed and the linker discards -liconv because it
finds iconv*() functions in libc now and no longer in libiconv.
net-mgmt/icinga-*: Remove dependency on iconv.
net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker
flags just because it happens to be installed.
net/asterisk11: Patch configure so it no longer adds -liconv to linker
flags just because it happens to be installed.
net-p2p/transmission-*: Override configure test for iconv.
www/htmlcxx: Override configure test for iconv.
www/httrack: Override configure test for iconv.
www/xapian-omega: Override configure test for iconv.
x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv.
x11/x3270: Override configure test for iconv.
x11-wm/jwm: Override configure test for iconv.

PR:		202838
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2015-10-10 14:03:00 +00:00

86 lines
2.2 KiB
Makefile

# Created by: Babak Farrokhi <babak@farrokhi.net>
# $FreeBSD$
PORTNAME= jwm
PORTVERSION= 2.3.1
CATEGORIES= x11-wm
MASTER_SITES= http://joewing.net/programs/jwm/releases/
MAINTAINER= ports@FreeBSD.org
COMMENT= Joe's Window Manager
LICENSE= GPLv2
USES= iconv pkgconfig tar:xz
USE_XORG= x11
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= CAIRO DEBUG FRIBIDI JPEG NLS PNG SVG XEXT XFT \
XINERAMA XMU XPM XRENDER
OPTIONS_DEFAULT= JPEG NLS PNG FRIBIDI XEXT XFT XINERAMA XMU XPM XRENDER
OPTIONS_SUB= yes
CAIRO_USE= GNOME=cairo
CAIRO_CONFIGURE_ENABLE= cairo
DEBUG_CONFIGURE_ENABLE= debug
FRIBIDI_DESC= Unicode Bidirectional Algorithm support
FRIBIDI_LIB_DEPENDS= libfribidi.so:${PORTSDIR}/converters/fribidi
FRIBIDI_CONFIGURE_ENABLE=fribidi
JPEG_USES= jpeg
JPEG_CONFIGURE_ENABLE= jpeg
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
PNG_LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
PNG_CONFIGURE_ENABLE= png
SVG_USE= GNOME=librsvg2
SVG_CONFIGURE_ENABLE= rsvg
XEXT_DESC= X11 Shape Extension support
XEXT_USE= XORG=xext
XEXT_CONFIGURE_ENABLE= shape
XFT_USE= XORG=xft
XFT_CONFIGURE_ENABLE= xft
XINERAMA_USE= XORG=xinerama
XINERAMA_CONFIGURE_ENABLE=xinerama
XMU_DESC= X11 Miscellaneous Utilities support
XMU_USE= XORG=xmu
XMU_CONFIGURE_ENABLE= xmu
XPM_USE= XORG=xpm
XPM_CONFIGURE_ENABLE= xpm
XRENDER_DESC= X11 Render Extension support
XRENDER_USE= XORG=xrender
XRENDER_CONFIGURE_ENABLE=xrender
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MXFT} && empty(PORT_OPTIONS:MXRENDER)
IGNORE= the XFT support requires XRENDER
.endif
.if ${PORT_OPTIONS:MXMU} && empty(PORT_OPTIONS:MXEXT)
IGNORE= the XMU support requires XEXT
.endif
.if ${PORT_OPTIONS:MXPM} && empty(PORT_OPTIONS:MXEXT)
IGNORE= the XPM support requires XEXT
.endif
.include <bsd.port.pre.mk>
.if !empty(ICONV_LIB)
CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv=yes
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/example.jwmrc
@${REINPLACE_CMD} -e \
's|install -m 644|@INSTALL_DATA@| ; \
s|jwmrc$$|jwmrc.sample|' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e \
'/EXE/s|install|@INSTALL_PROGRAM@| ; \
/strip/s|^|#|' ${WRKSRC}/src/Makefile.in
.include <bsd.port.post.mk>