diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-04-22 04:46:36 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-04-22 04:46:36 +0000 |
commit | 0874a464094102ad4dc553e7db14969221c7cf95 (patch) | |
tree | 316c72268fa0edde5c158a669c6eb69de6eddfb6 /x11/gnome-terminal | |
parent | Convert to new GNOME infrastructure. (diff) |
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 e26ec86e2acc..7cf761552c45 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> |