Use USE_IMAKE when BATCH=YES.

Reported by:	bento
Suggested by:	PW
This commit is contained in:
Jun Kuriyama 2000-08-08 08:14:16 +00:00
parent 2183743a4a
commit 433858ca01
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=31417

View File

@ -12,22 +12,28 @@ MASTER_SITES= http://www.asclock.org/tar/
MAINTAINER= kuriyama@FreeBSD.org
HAS_CONFIGURE= YES
WRKSRC= ${WRKDIR}/asclock-xlib
USE_X_PREFIX= YES
USE_XPM= YES
.include <bsd.port.pre.mk>
.if defined(BATCH)
USE_IMAKE= YES
.else
USE_X_PREFIX= YES
HAS_CONFIGURE= YES
.endif
post-patch:
@(cd ${WRKSRC}; \
${MV} config.c config.c.tmp; \
${SED} -e s@/usr/local/@${X11BASE}/@ -e s@/usr/share/asclock@${LOCALBASE}/share/asclock@ < config.c.tmp > config.c )
.if defined(BATCH)
do-configure:
pre-configure:
@(cd ${WRKSRC}; \
${RM} -rf default_theme; \
${LN} -s themes/Orb default_theme; \
${XMKMF} )
${LN} -s themes/Orb default_theme)
.endif
post-install:
@ -37,4 +43,4 @@ post-install:
${INSTALL_DATA} *.xpm config ${PREFIX}/share/asclock/${i}/ )
.endfor
.include <bsd.port.mk>
.include <bsd.port.post.mk>