diff options
author | Jim Mock <jim@FreeBSD.org> | 2000-07-03 03:14:54 +0000 |
---|---|---|
committer | Jim Mock <jim@FreeBSD.org> | 2000-07-03 03:14:54 +0000 |
commit | 3e3ad67dc439a155e8d3050ad50e25da1d46e310 (patch) | |
tree | 447d62848ecd72a101675e53381a021bdd995be0 /x11/aterm/Makefile | |
parent | Remove extraneous directories on deinstall (diff) |
Update to version 0.4.0. Also add WITH_MENUBAR and WITH_NEXTSCROLL hooks
for those who prefer to use those features.
Diffstat (limited to 'x11/aterm/Makefile')
-rw-r--r-- | x11/aterm/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/x11/aterm/Makefile b/x11/aterm/Makefile index 975cf2126296..56aa3a8a4dd6 100644 --- a/x11/aterm/Makefile +++ b/x11/aterm/Makefile @@ -6,10 +6,9 @@ # PORTNAME= aterm -PORTVERSION= 0.3.6 +PORTVERSION= 0.4.0 CATEGORIES= x11 -MASTER_SITES= http://members.xoom.com/sashav/aterm/ \ - http://www.tigr.net/afterstep/as-apps/download/aterm/ +MASTER_SITES= http://download.sourceforge.net/aterm/ MAINTAINER= jim@FreeBSD.org @@ -23,6 +22,14 @@ CONFIGURE_ARGS= --enable-transparency --enable-background-image \ --disable-delete-key --disable-backspace-key \ --enable-fading --enable-utmp --enable-wtmp +.if defined(WITH_MENUBAR) +CONFIGURE_ARGS+= --enable-menubar +.endif + +.if defined(WITH_NEXTSCROLL) +CONFIGURE_ARGS+= --enable-next-scroll +.endif + MAN1= aterm.1 post-install: |