-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
50 lines (37 loc) · 1.26 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# $OpenBSD: Makefile,v 1.27 2006/12/27 16:18:24 ajacoutot Exp $
COMMENT= "small, fast window manager"
DISTNAME= icewm-1.2.30
CATEGORIES= x11
HOMEPAGE= http://www.icewm.org/
MAINTAINER= Antoine Jacoutot <[email protected]>
# 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
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>