diff options
author | eadler <eadler@FreeBSD.org> | 2012-01-29 23:57:27 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-01-29 23:57:27 +0800 |
commit | b3d93b33ab60abe394f940460507257bb427d341 (patch) | |
tree | a400da041e5594bc665178aeffb45bed3a5c6520 /x11-wm | |
parent | 4c947c1a540dafb3edc46afdc0a06e1391e2ee48 (diff) | |
download | freebsd-ports-gnome-b3d93b33ab60abe394f940460507257bb427d341.tar.gz freebsd-ports-gnome-b3d93b33ab60abe394f940460507257bb427d341.tar.zst freebsd-ports-gnome-b3d93b33ab60abe394f940460507257bb427d341.zip |
- Enable XINERAMA by default - it has no extra depends
- Enable Beastie by default - daemon > no daemon
- Add a LITE option - untested
- Include MenuIconSize not yet upstreamed
PR: ports/164386
Submitted by: Gabor Fischer <Gabor.Fischer@gmx.net>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/icewm/Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/x11-wm/icewm/Makefile b/x11-wm/icewm/Makefile index 2f98b694cb34..2e8d1bf66430 100644 --- a/x11-wm/icewm/Makefile +++ b/x11-wm/icewm/Makefile @@ -7,7 +7,7 @@ PORTNAME= icewm PORTVERSION= 1.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTVERSION}/ @@ -32,10 +32,12 @@ CONFIGURE_ARGS= --enable-shaped-decorations \ OPTIONS= GNOMEDESKTOP "Enable GNOME desktop support" off \ ESOUND "Enable EsounD daemon support" off \ XFT "Enable Xft support for fonts" on \ - XINERAMA "Enable Xinerama support" off \ + XINERAMA "Enable Xinerama support" on \ X86_ASM "Use optimized x86 assembly code" on \ - BEASTIE "Use Beastie'fied startup button" off \ - NLS "Enable National Language Support" on + BEASTIE "Use Beastie'fied startup button" on \ + NLS "Enable National Language Support" on \ + LITE "Reduced features and memory" off \ + MENUFIX "MenuIconSize fix" on # Restrict to stable (even) versions, indicated by the second component. #PORTSCOUT= limitw:1,even @@ -87,6 +89,14 @@ CONFIGURE_ARGS+=--disable-nls --disable-i18n PLIST_SUB+= NLS="@comment " .endif +.if !defined(WITHOUT_LITE) +MAKE_ENV+= LITE=1 +.endif + +.if defined(WITH_MENUFIX) +EXTRA_PATCHES+= ${FILESDIR}/extra-menu-icon-fix.patch +.endif + post-extract: .for dir in taskbar themes/Infadel2/taskbar @cd ${WRKSRC}/lib/${dir} && ${MV} start.xpm icewm-logo.xpm |