diff options
author | dsainty <dsainty@pkgsrc.org> | 2008-03-02 05:31:00 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2008-03-02 05:31:00 +0000 |
commit | 85f4dd0669b235aed355ec131ced98ac1903f5a9 (patch) | |
tree | 5a68496bc15e0f12ae36b5fda23f1d390f1ab37c /games/crack-attack | |
parent | 19758f6cbe35775c1b5055745b7da304d9b97282 (diff) | |
download | pkgsrc-85f4dd0669b235aed355ec131ced98ac1903f5a9.tar.gz |
The "binary relocate" support (in src/prefix.*) parses /proc/self/maps and
expects pathnames. Older NetBSD kernels don't provide the path, leading to a
failure to locate the right path prefixes. Being Pkgsrc, we're not really
interested in leaving these decisions to run-time anyway, so just disable this
behaviour outright.
Bump PKGREVISION.
Diffstat (limited to 'games/crack-attack')
-rw-r--r-- | games/crack-attack/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/games/crack-attack/Makefile b/games/crack-attack/Makefile index 8f17ba3403d..414213a4d52 100644 --- a/games/crack-attack/Makefile +++ b/games/crack-attack/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2008/01/06 21:33:12 snj Exp $ +# $NetBSD: Makefile,v 1.15 2008/03/02 05:31:00 dsainty Exp $ DISTNAME= crack-attack-1.1.14 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= games MASTER_SITES= http://savannah.nongnu.org/download/crack-attack/ @@ -9,9 +9,10 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://savannah.nongnu.org/projects/crack-attack COMMENT= Tetris Attack inspired game -GNU_CONFIGURE= YES -USE_LANGUAGES= c c++ -USE_TOOLS+= pkg-config +GNU_CONFIGURE= YES +CONFIGURE_ARGS+= --disable-binreloc +USE_LANGUAGES= c c++ +USE_TOOLS+= pkg-config post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/${PKGBASE} |