diff options
author | olgeni <olgeni@FreeBSD.org> | 2001-09-07 19:59:57 +0000 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2001-09-07 19:59:57 +0000 |
commit | 1f6ee290fa4028e19111dc2b06cb7677a7297470 (patch) | |
tree | 8adb15ef17d4c85480ae750815b503574d44c7ed /x11/eterm/Makefile | |
parent | 0d8ee307c22e51eabc404c7a5b59db4f8745b199 (diff) | |
download | FreeBSD-ports-1f6ee290fa4028e19111dc2b06cb7677a7297470.zip FreeBSD-ports-1f6ee290fa4028e19111dc2b06cb7677a7297470.tar.gz |
Update port to version 0.9.1, plus a couple of patches from CVS to fix some
bugs.
Submitted by: Jeremy Norris <ishmael27@home.com>
Diffstat (limited to 'x11/eterm/Makefile')
-rw-r--r-- | x11/eterm/Makefile | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/x11/eterm/Makefile b/x11/eterm/Makefile index a2feefd..f1f12b6 100644 --- a/x11/eterm/Makefile +++ b/x11/eterm/Makefile @@ -6,29 +6,35 @@ # PORTNAME= eterm -PORTVERSION= 0.9 -PORTREVISION= 1 +PORTVERSION= 0.9.1 CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= eterm +MASTER_SITES= http://www.eterm.org/download/ \ + ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= Eterm-${PORTVERSION} MAINTAINER= olgeni@FreeBSD.org BUILD_DEPENDS= man2html:${PORTSDIR}/textproc/man2html -USE_GMAKE= yes +LIB_DEPENDS= Imlib2.1:${PORTSDIR}/graphics/imlib2 \ + ast.1:${PORTSDIR}/devel/libast + USE_X_PREFIX= yes -USE_IMLIB= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --enable-trans=imlib --enable-utmp \ +CONFIGURE_ARGS= --enable-trans --enable-utmp \ --enable-xim --with-theme-update \ - --with-backspace=bs -CONFIGURE_ENV= LIBS="-lxpg4" + --with-backspace=bs --without-terminfo MAN1= Eterm.1 +.include <bsd.port.pre.mk> + +.if defined(WITH_MMX) && (${ARCH} == "i386") +CONFIGURE_ARGS+=--enable-mmx +.endif + post-install: @${CHMOD} 4711 ${PREFIX}/bin/Eterm .if !defined(NOPORTDOCS) @@ -40,4 +46,4 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/doc/Eterm.ti ${PREFIX}/share/doc/Eterm .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |