svn commit: r361338 - head/games/atomix
John Marino
marino at FreeBSD.org
Wed Jul 9 06:48:44 UTC 2014
Author: marino
Date: Wed Jul 9 06:48:43 2014
New Revision: 361338
URL: http://svnweb.freebsd.org/changeset/ports/361338
QAT: https://qat.redports.org/buildarchive/r361338/
Log:
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
Modified:
head/games/atomix/Makefile
head/games/atomix/pkg-plist
Modified: head/games/atomix/Makefile
==============================================================================
--- head/games/atomix/Makefile Wed Jul 9 06:14:32 2014 (r361337)
+++ head/games/atomix/Makefile Wed Jul 9 06:48:43 2014 (r361338)
@@ -1,10 +1,9 @@
# Created by: Yukihiro Nakai <nakai at FreeBSD.org>
# $FreeBSD$
-# $MCom: ports/games/atomix/Makefile,v 1.14 2007/09/10 05:39:33 mezz Exp $
PORTNAME= atomix
PORTVERSION= 2.14.0
-PORTREVISION= 12
+PORTREVISION= 13
CATEGORIES= games gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
@@ -19,7 +18,7 @@ CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lm
post-patch:
- @${REINPLACE_CMD} -e 's/games\.games/games:games/' ${WRKSRC}/Makefile.in
+ @${REINPLACE_CMD} -e 's| install-data-local | |g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e '/^$$/d' ${WRKSRC}/po/POTFILES.in
.include <bsd.port.mk>
Modified: head/games/atomix/pkg-plist
==============================================================================
--- head/games/atomix/pkg-plist Wed Jul 9 06:14:32 2014 (r361337)
+++ head/games/atomix/pkg-plist Wed Jul 9 06:48:43 2014 (r361338)
@@ -122,7 +122,6 @@ share/locale/wa/LC_MESSAGES/atomix.mo
share/locale/zh_CN/LC_MESSAGES/atomix.mo
share/locale/zh_HK/LC_MESSAGES/atomix.mo
share/locale/zh_TW/LC_MESSAGES/atomix.mo
- at dirrmtry share/games
@dirrm share/atomix/themes/default
@dirrm share/atomix/themes
@dirrm share/atomix/level
More information about the svn-ports-all
mailing list