diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2001-09-07 19:59:57 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2001-09-07 19:59:57 +0000 |
commit | b9106bee899da04a8023ae8575bfcf33d4e489c0 (patch) | |
tree | d3ceb5ba8dba722886c21a0071db6e08ca6e0d1b /x11/eterm/Makefile | |
parent | Add devel/libast, "A library of assorted spiffy things, previously known as (diff) |
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>
Notes
Notes:
svn path=/head/; revision=47509
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 a2feefd95e6d..f1f12b6afb3c 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> |