diff options
author | dougb <dougb@FreeBSD.org> | 2011-09-25 10:35:51 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2011-09-25 10:35:51 +0800 |
commit | 87dd77c6af9c561be963db65686e0f3ea23b5605 (patch) | |
tree | 44fe4246ba684b692bf4a10c8fa7547f89b356e3 | |
parent | cdcc5db389e40dcdefdd5afaa3e2a6f7a5bae2ef (diff) | |
download | freebsd-ports-graphics-87dd77c6af9c561be963db65686e0f3ea23b5605.tar.gz freebsd-ports-graphics-87dd77c6af9c561be963db65686e0f3ea23b5605.tar.zst freebsd-ports-graphics-87dd77c6af9c561be963db65686e0f3ea23b5605.zip |
When not -D BATCH mark IS_INTERACTIVE, make imake dependency unconditional
PR: ports/151723
Submitted by: me
Approved by: maintainer timeout (11 months)
-rw-r--r-- | x11-clocks/asclock-xlib/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/x11-clocks/asclock-xlib/Makefile b/x11-clocks/asclock-xlib/Makefile index d2bf127fd85..61675a48256 100644 --- a/x11-clocks/asclock-xlib/Makefile +++ b/x11-clocks/asclock-xlib/Makefile @@ -7,7 +7,7 @@ PORTNAME= asclock-xlib PORTVERSION= 2.0.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-clocks afterstep windowmaker MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= kuriyama @@ -15,13 +15,14 @@ MASTER_SITE_SUBDIR= kuriyama MAINTAINER= kuriyama@FreeBSD.org COMMENT= New flavor of asclock -WRKSRC= ${WRKDIR}/asclock-xlib -USE_XORG= xpm +MAKE_JOBS_UNSAFE= yes -.if defined(BATCH) +WRKSRC= ${WRKDIR}/asclock-xlib +USE_XORG= xpm x11 USE_IMAKE= YES -.else -USE_XORG= x11 + +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +IS_INTERACTIVE= YES HAS_CONFIGURE= YES .endif |