d2b50ba025
maintainer doesn't respond to inqueries. PR: 37281 Submitted by: Ports Fury
68 lines
1.9 KiB
Makefile
68 lines
1.9 KiB
Makefile
# New ports collection makefile for: xfce
|
|
# Date created: 30 June 1997
|
|
# Whom: Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xfce
|
|
PORTVERSION= 3.8.16
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://www.xfce.org/archive/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile \
|
|
iconv.3:${PORTSDIR}/converters/libiconv \
|
|
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GTK= yes
|
|
USE_XPM= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-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} \
|
|
--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 ${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
|
|
|
|
pre-patch:
|
|
@${PERL} -pi -e 's|=aclocal|=${TRUE}|g ; \
|
|
s|=autoconf|=${TRUE}|g ; \
|
|
s|=automake|=${TRUE}|g ; \
|
|
s|=autoheader|=${TRUE}|g ; \
|
|
s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
|
|
@${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
|
|
|
|
.include <bsd.port.post.mk>
|