diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2007-03-23 00:48:04 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2007-03-23 00:48:04 +0000 |
commit | 5326bb01c666ea3e32b3228f016c8b819e47a278 (patch) | |
tree | c78e5fce47f0ff3301a25f2359d7563bd3d1407b /x11-wm | |
parent | 44316911e17d3346606ed3290a3fbc1e98acc380 (diff) | |
download | ports-5326bb01c666ea3e32b3228f016c8b819e47a278.tar.gz ports-5326bb01c666ea3e32b3228f016c8b819e47a278.zip |
- Bump PORTREVISION (package changes: added pkg-message).
- Remove unavoidable autodetection of OPTIONS.
- Remove PKGNAMESUFFIX when GNOMEDESKTOP is selected.
- Portlint does not complain now.
- Fix OPTIONS handling for IMLIB (is ON, so check for WITHOUT_).
- Clean up.
- Add pkg-message with information about icons, themes, an icon tray problem
when disabling IMLIB and a note about a menu generator.
Notes
Notes:
svn path=/head/; revision=188071
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/icewm/Makefile | 73 | ||||
-rw-r--r-- | x11-wm/icewm/pkg-message | 19 |
2 files changed, 53 insertions, 39 deletions
diff --git a/x11-wm/icewm/Makefile b/x11-wm/icewm/Makefile index 04f30f23f3bb..b13a1875a6d2 100644 --- a/x11-wm/icewm/Makefile +++ b/x11-wm/icewm/Makefile @@ -7,6 +7,7 @@ PORTNAME= icewm PORTVERSION= 1.2.30 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= SF @@ -38,90 +39,84 @@ OPTIONS= GNOMEDESKTOP "Enable GNOME desktop support" off \ .include <bsd.port.pre.mk> -.if ${HAVE_GNOME:Mgnomedesktop}!="" || defined(WITH_GNOMEDESKTOP) +.if defined(WITH_GNOMEDESKTOP) USE_GNOME+= gnomedesktop -CONFIGURE_ARGS+= --enable-menus-gnome2 -INSTALL_TARGET= install install-gnome +CONFIGURE_ARGS+=--enable-menus-gnome2 +INSTALL_TARGET= install install-gnome PLIST_SUB+= GNOMEDESKTOP="" -PKGNAMESUFFIX= -gnome .else PLIST_SUB+= GNOMEDESKTOP="@comment " .endif -.if ${HAVE_GNOME:Mimlib}!="" || defined(WITH_IMLIB) +.if !defined(WITHOUT_IMLIB) USE_GNOME+= imlib -CONFIGURE_ARGS+= --with-imlib +CONFIGURE_ARGS+=--with-imlib .else USE_XPM= yes -CONFIGURE_ARGS+= --without-imlib +CONFIGURE_ARGS+=--without-imlib .endif -.if ${HAVE_GNOME:Mesound}!="" || defined(WITH_ESOUND) +.if defined(WITH_ESOUND) USE_GNOME+= esound -CONFIGURE_ARGS+= --with-icesound=esound +CONFIGURE_ARGS+=--with-icesound=esound .else -CONFIGURE_ARGS+= --with-icesound=oss +CONFIGURE_ARGS+=--with-icesound=oss .endif -.if defined(WITHOUT_XFT) -CONFIGURE_ARGS+= --enable-corefonts --disable-xfreetype -.else +.if !defined(WITHOUT_XFT) LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft -CONFIGURE_ARGS+= --enable-gradients +CONFIGURE_ARGS+=--enable-gradients +.else +CONFIGURE_ARGS+=--enable-corefonts --disable-xfreetype .endif .if defined(WITHOUT_XINERAMA) -CONFIGURE_ARGS+= --disable-xinerama +CONFIGURE_ARGS+=--disable-xinerama .endif .if ${ARCH} != "i386" || defined(WITHOUT_X86_ASM) -CONFIGURE_ARGS+= --disable-x86-asm +CONFIGURE_ARGS+=--disable-x86-asm .endif .if defined(WITH_BEASTIE) -STARTUP_PIXMAP= ${DATADIR}/taskbar/bsd-daemon.xpm +STARTUP_PIXMAP= ${DATADIR}/taskbar/bsd-daemon.xpm .else -STARTUP_PIXMAP= icewm-logo.xpm +STARTUP_PIXMAP= icewm-logo.xpm .endif -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+= --disable-nls --disable-i18n -PLIST_SUB+= NLS="@comment " -.else +.if !defined(WITHOUT_NLS) USE_GETTEXT= yes PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls --disable-i18n +PLIST_SUB+= NLS="@comment " .endif post-extract: - @cd ${WRKSRC}/lib/taskbar && ${MV} start.xpm icewm-logo.xpm -.for dir in Infadel2 - @cd ${WRKSRC}/lib/themes/${dir}/taskbar && ${MV} start.xpm icewm-logo.xpm +.for dir in taskbar themes/Infadel2/taskbar + @cd ${WRKSRC}/lib/${dir} && ${MV} start.xpm icewm-logo.xpm .endfor @${CP} -f ${FILESDIR}/bsd-daemon.xpm ${WRKSRC}/lib/taskbar post-patch: -.for file in configure - @${REINPLACE_CMD} -e '/test/s|==|=|g' ${WRKSRC}/${file} -.endfor -.for file in src/gnome2.cc + @${REINPLACE_CMD} -e '/test/s|==|=|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's|/usr/share/control|${LOCALBASE}/share/gnome/control|g ; \ s|/usr/share/app|${LOCALBASE}/share/gnome/app|g ; \ - s|/usr/share/gnome|${LOCALBASE}/share/gnome|g' ${WRKSRC}/${file} -.endfor + s|/usr/share/gnome|${LOCALBASE}/share/gnome|g' \ + ${WRKSRC}/src/gnome2.cc post-install: - @${LN} -sf ${STARTUP_PIXMAP} ${DATADIR}/taskbar/start.xpm -.for dir in Infadel2 - @${LN} -sf ${STARTUP_PIXMAP} \ - ${DATADIR}/themes/${dir}/taskbar/start.xpm +.for dir in taskbar themes/Infadel2/taskbar + @${LN} -sf ${STARTUP_PIXMAP} ${DATADIR}/${dir}/start.xpm .endfor .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in CHANGES INSTALL README TODO - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor + ${MKDIR} ${DOCSDIR} +. for f in CHANGES INSTALL README TODO + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +. endfor ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR} .endif + @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} .include <bsd.port.post.mk> diff --git a/x11-wm/icewm/pkg-message b/x11-wm/icewm/pkg-message new file mode 100644 index 000000000000..ab67c041ef34 --- /dev/null +++ b/x11-wm/icewm/pkg-message @@ -0,0 +1,19 @@ +============================================================================== + +IceWM has been installed. + +If you want a set of icons to use with IceWM see: + +* http://themes.freshmeat.net/projects/iceicons/ + +If you want more themes see: + +* http://themes.freshmeat.net/browse/925/ + +If you do not see icons in the tray when they should be there, please try +rebuilding with the "IMLIB" option enabled. + +Graphical configuration tools for IceWM are outdated and obsolete, but there +is a useful menu generator in the ports tree: "deskutils/menumaker". + +============================================================================== |