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 | 701008f5008b8b13b371240d4f2d098b880fcc5e (patch) | |
tree | 5a68496bc15e0f12ae36b5fda23f1d390f1ab37c /games/crack-attack/Makefile | |
parent | 6a0bbfc67659e8fd303162cd3c8e2f27b4be528b (diff) | |
download | pkgsrc-701008f5008b8b13b371240d4f2d098b880fcc5e.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/Makefile')
-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} |