diff options
author | sf <sf@FreeBSD.org> | 2002-01-23 05:30:42 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2002-01-23 05:30:42 +0800 |
commit | 3d457e9d36a83b0a1a2a43710feb9a6ae5ad398f (patch) | |
tree | 454cd72de913ff0595b636bf2a28c6f29425a942 /x11-wm/xfce/Makefile | |
parent | 516f282dfaa8b7ec513cb9da7ffbef6c8f7c6256 (diff) | |
download | freebsd-ports-gnome-3d457e9d36a83b0a1a2a43710feb9a6ae5ad398f.tar.gz freebsd-ports-gnome-3d457e9d36a83b0a1a2a43710feb9a6ae5ad398f.tar.zst freebsd-ports-gnome-3d457e9d36a83b0a1a2a43710feb9a6ae5ad398f.zip |
update to 3.8.14.
PR: 34181
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'x11-wm/xfce/Makefile')
-rw-r--r-- | x11-wm/xfce/Makefile | 37 |
1 files changed, 23 insertions, 14 deletions
diff --git a/x11-wm/xfce/Makefile b/x11-wm/xfce/Makefile index a676d013fc4c..91ccc196ce3e 100644 --- a/x11-wm/xfce/Makefile +++ b/x11-wm/xfce/Makefile @@ -6,42 +6,54 @@ # PORTNAME= xfce -PORTVERSION= 3.8.8b +PORTVERSION= 3.8.14 CATEGORIES= x11-wm -MASTER_SITES= http://www.xfce.org/archive/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://www.xfce.org/archive/ +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= nakai@FreeBSD.org -LIB_DEPENDS= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile \ + gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf USE_X_PREFIX= yes USE_GTK= yes USE_XPM= yes -USE_LIBTOOL= yes +GNU_CONFIGURE= yes +CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --with-conf-dir=${PREFIX}/etc/xfce \ --with-data-dir=${PREFIX}/share/xfce \ --with-locale-dir=${PREFIX}/share/locale \ --with-xpm=${X11BASE} \ - --disable-xinerama + --enable-gtk-engine=${PREFIX}/lib/gtk/themes/engines \ + --disable-arts + +MAN1= glob.1 xfbd.1 xfce.1 xfclock.1 xfumed.1 xfglob.1 xfgnome.1 \ + xfhelp.1 xflock.1 xfmountdev.1 xfmouse.1 xfpager.1 xfprint.1 \ + xfrun.1 xfsound.1 xfterm.1 xftrash.1 xftree.1 xfwm.1 .include <bsd.port.pre.mk> -.if defined(WITH_XFT) && ${WITH_XFT} == yes -CONFIGURE_ARGS+= --enable-xft +.if ${XFREE86_VERSION} == 4 +.if defined(WITH_XFT) +CONFIGURE_ARGS+= --enable-xft +.endif +CONFIGURE_ARGS+= --enable-xinerama .else +CONFIGURE_ARGS+= --disable-xinerama +.endif + pre-everything:: +.if !defined(WITH_XFT) && ${XFREE86_VERSION} == 4 @${ECHO_MSG} @${ECHO_MSG} "If you want to enable anti-aliased font support," @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_XFT=yes\"" @${ECHO_MSG} .endif -MAN1= glob.1 xfbd.1 xfce.1 xfclock.1 xfglob.1 xfgnome.1 xfhelp.1 \ - xflock.1 xfmountdev.1 xfmouse.1 xfpager.1 xfprint.1 xfrun.1 \ - xfsound.1 xfterm.1 xftrash.1 xftree.1 xfwm.1 - pre-patch: @${PERL} -pi -e \ 's|DATADIRNAME=lib|DATADIRNAME=share|g ; \ @@ -50,7 +62,4 @@ pre-patch: @${PERL} -pi -e 's|gtk-config|${GTK_CONFIG:T}|g' ${WRKSRC}/xfce/setup.c @${PERL} -pi -e 's|xfplay|internal|g' ${WRKSRC}/other/xfsoundrc.in -pre-build: - ${LN} -sf ${LOCALBASE}/bin/libtool ${WRKSRC}/libtool - .include <bsd.port.post.mk> |