ad6d3d0fe3
reminded (several times) by Federico Schwindt <fgsch at lodoss dot net>, thanks!
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.30 2007/10/05 14:15:13 ajacoutot Exp $
|
|
|
|
COMMENT= small, fast window manager
|
|
|
|
DISTNAME= icewm-1.2.32
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://www.icewm.org/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= ICE Imlib SM X11 Xext Xft Xinerama Xrandr Xrender \
|
|
c fontconfig freetype jpeg m png stdc++ tiff ungif z \
|
|
Xau Xdmcp expat
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=icewm/}
|
|
|
|
MODULES= devel/gettext
|
|
|
|
LIB_DEPENDS= Imlib.>=19::graphics/imlib
|
|
|
|
USE_X11= Yes
|
|
NO_REGRESS= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-imlib=${PREFIX}/bin \
|
|
--with-docdir=${PREFIX}/share/doc \
|
|
--with-libdir=${PREFIX}/share/icewm \
|
|
--with-cfgdir=${SYSCONFDIR}/icewm \
|
|
--disable-i18n \
|
|
--enable-shaped-decorations \
|
|
--enable-gradients
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "i386" \
|
|
|| ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc"
|
|
PATCH_LIST= patch-* apm-*
|
|
.endif
|
|
|
|
post-install:
|
|
@perl -pi -e 's:%%SYSCONFDIR%%:${SYSCONFDIR}:g;' \
|
|
-e 's:%%PREFIX%%:${TRUEPREFIX}:g;' \
|
|
${PREFIX}/share/doc/icewm/icewm-7.html
|
|
|
|
.include <bsd.port.mk>
|