diff options
author | sf <sf@FreeBSD.org> | 2005-07-24 15:29:27 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2005-07-24 15:29:27 +0800 |
commit | e2c330bd6e7a3bcec02381b294e18891daf8062e (patch) | |
tree | 6943dbdb67d6b31429495a4b2fe1de40ad85dd0b | |
parent | 813eaecfade866f44c64df4d18cf74fab5398aab (diff) | |
download | freebsd-ports-graphics-e2c330bd6e7a3bcec02381b294e18891daf8062e.tar.gz freebsd-ports-graphics-e2c330bd6e7a3bcec02381b294e18891daf8062e.tar.zst freebsd-ports-graphics-e2c330bd6e7a3bcec02381b294e18891daf8062e.zip |
detect imlib2 correctly. Otherwise it produces "useless" Esetroot binary
like this:
| $ ./bin/Esetroot
| Eterm was built without pixmap support, so Esetroot is fairly useless. Sorry.
maintainer timeout for 10 days.
-rw-r--r-- | x11/eterm/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11/eterm/Makefile b/x11/eterm/Makefile index c165c09ad4c..ddf55884019 100644 --- a/x11/eterm/Makefile +++ b/x11/eterm/Makefile @@ -7,7 +7,7 @@ PORTNAME= eterm PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= x11 MASTER_SITES= http://www.eterm.org/download/ DISTNAME= Eterm-${PORTVERSION} @@ -27,6 +27,8 @@ CONFIGURE_ARGS?=--enable-trans --enable-utmp \ --enable-xim --with-theme-update \ --with-backspace=bs --without-terminfo \ --enable-multi-charset +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" MAN1= Eterm.1 |