diff options
author | marino <marino@FreeBSD.org> | 2014-07-09 14:48:43 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-07-09 14:48:43 +0800 |
commit | cd55b0d85a65d68b9f9add2858e6b75a614ed5e1 (patch) | |
tree | 717501db633da3172a73e5ce250b74f36bf8506c /games/atomix | |
parent | c6e5b322b67a5855f3c2eb57d10ac4ed6dddb9b4 (diff) | |
download | freebsd-ports-gnome-cd55b0d85a65d68b9f9add2858e6b75a614ed5e1.tar.gz freebsd-ports-gnome-cd55b0d85a65d68b9f9add2858e6b75a614ed5e1.tar.zst freebsd-ports-gnome-cd55b0d85a65d68b9f9add2858e6b75a614ed5e1.zip |
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
Diffstat (limited to 'games/atomix')
-rw-r--r-- | games/atomix/Makefile | 5 | ||||
-rw-r--r-- | games/atomix/pkg-plist | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/games/atomix/Makefile b/games/atomix/Makefile index b7c1e58bbf50..b86dc07e3108 100644 --- a/games/atomix/Makefile +++ b/games/atomix/Makefile @@ -1,10 +1,9 @@ # Created by: Yukihiro Nakai <nakai@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> diff --git a/games/atomix/pkg-plist b/games/atomix/pkg-plist index 4ec8f6cac2e2..3b0b464223dd 100644 --- a/games/atomix/pkg-plist +++ b/games/atomix/pkg-plist @@ -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 -@dirrmtry share/games @dirrm share/atomix/themes/default @dirrm share/atomix/themes @dirrm share/atomix/level |