freebsd-ports/games/xlogical/Makefile
Tijl Coosemans 68edbeeaae - Display a stage-qa warning when ports use PREFIX/var instead of /var
- Add --localstatedir=/var to _LATE_CONFIGURE_ARGS (like --mandir) but not
  when CONFIGURE_ARGS already sets it.  (GNU configure scripts set it to
  PREFIX/var when PREFIX != /usr.)
- Add --localstatedir="${PREFIX}/var" to CONFIGURE_ARGS in some ports so
  they aren't affected by this change (for now at least).  This commit is
  meant to ensure that new ports don't make the same mistake.

- games/acm: the configure script in this port is very old; instead of
  patching it more, just replace GNU_CONFIGURE with HAS_CONFIGURE.
- irc/charybdis: it already used /var but adding --localstatedir=/var
  changed the behaviour of the configure script; adjust the port to this.

PR:		199506
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2015-04-20 19:06:29 +00:00

36 lines
801 B
Makefile

# Created by: Aaron Baugher
# $FreeBSD$
PORTNAME= xlogical
PORTVERSION= 1.0p8
PORTREVISION= 10
CATEGORIES= games
MASTER_SITES= http://changeling.ixionstudios.com/xlogical/downloads/ \
http://freebsd.portsreview.info/downloads/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/p/-/}
MAINTAINER= aaron@baugher.biz
COMMENT= Remake of the classic puzzle game Logical
LICENSE= GPLv2
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --localstatedir="${PREFIX}/var"
USES= autoreconf dos2unix gmake tar:bzip2
USE_SDL= sdl image mixer
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-extract:
@${CHMOD} 755 ${WRKSRC}/missing
@${RM} ${WRKSRC}/LICENSE
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/[A-Z][A-Z]* ${STAGEDIR}${DOCSDIR}
.endif
.include <bsd.port.mk>