diff options
author | marcus <marcus@FreeBSD.org> | 2003-04-22 04:46:36 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-04-22 04:46:36 +0000 |
commit | 7f1f373c25f74ecfbaf9c5bfb4074a95228216f6 (patch) | |
tree | a275bb65cb1b83d2d0c4e0c043186a0176c357ce /x11/gnome-terminal | |
parent | e19daf26a391b9070456a133fb8dbaf46ca059c8 (diff) | |
download | FreeBSD-ports-7f1f373c25f74ecfbaf9c5bfb4074a95228216f6.zip FreeBSD-ports-7f1f373c25f74ecfbaf9c5bfb4074a95228216f6.tar.gz |
Convert to new GNOME infrastructure.
Diffstat (limited to 'x11/gnome-terminal')
-rw-r--r-- | x11/gnome-terminal/Makefile | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/x11/gnome-terminal/Makefile b/x11/gnome-terminal/Makefile index e26ec86..7cf7615 100644 --- a/x11/gnome-terminal/Makefile +++ b/x11/gnome-terminal/Makefile @@ -16,34 +16,25 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Terminal component for the GNOME 2.0 Desktop -LIB_DEPENDS= gnomeui-2.200:${PORTSDIR}/x11-toolkits/libgnomeui - -.if defined(WITH_ZVT) -LIB_DEPENDS+= zvt-2.0.0:${PORTSDIR}/x11-toolkits/libzvt -.else -LIB_DEPENDS+= vte.4:${PORTSDIR}/x11-toolkits/vte -.endif - USE_BZIP2= yes USE_X_PREFIX= yes USE_REINPLACE= yes USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack gnomehier +USE_GNOME= gnomeprefix gnomehack gnomehier libgnomeui USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} .if defined(WITH_ZVT) CONFIGURE_ARGS= --with-widget=zvt +USE_GNOME+= libzvt .else CONFIGURE_ARGS= --with-widget=vte +USE_GNOME+= vte .endif post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|[(]libdir[)]/locale|(prefix)/share/locale|g' \ - ${WRKSRC}/po/Makefile.in.in .include <bsd.port.mk> |