freebsd-ports/games/atomix/Makefile
John Marino b57b91549c games/atomix: never-ending stage, take 3
Newer poudriere (read: current FreeBSD version) has an additional plist
check that atomix failed.  It turns out that the original port moved the
atomix.scores creation to the pkg-install script, but it never surpressed
the original Makefile code that created it.  In effect, the original
Makefile was creating the file and the pkg-install script wasn't doing
much of anything.  This caused the signature to be confusing.

The solution is simple: Surpress the vendor makefile target that creates
atomix.scores and let pkg-install create it as intended.

Diagnosis by:	bdrewery
2014-07-09 06:48:43 +00:00

24 lines
596 B
Makefile

# Created by: Yukihiro Nakai <nakai@FreeBSD.org>
# $FreeBSD$
PORTNAME= atomix
PORTVERSION= 2.14.0
PORTREVISION= 13
CATEGORIES= games gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
MAINTAINER= ports@FreeBSD.org
COMMENT= Yet another little mind game
USES= gettext gmake pkgconfig tar:bzip2
USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lm
post-patch:
@${REINPLACE_CMD} -e 's| install-data-local | |g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e '/^$$/d' ${WRKSRC}/po/POTFILES.in
.include <bsd.port.mk>