diff options
author | joerg <joerg@pkgsrc.org> | 2009-07-08 17:15:08 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-07-08 17:15:08 +0000 |
commit | 39b3415d6fe5499b158287ab7c35e2f6121f4c28 (patch) | |
tree | e8ab1c59f503522ad72a41b9800812a766c73d59 /games/xgospel | |
parent | eb273f5f10535be5c1e7a5967065f521932bab3e (diff) | |
download | pkgsrc-39b3415d6fe5499b158287ab7c35e2f6121f4c28.tar.gz |
user-destdir support
Diffstat (limited to 'games/xgospel')
-rw-r--r-- | games/xgospel/Makefile | 4 | ||||
-rw-r--r-- | games/xgospel/distinfo | 4 | ||||
-rw-r--r-- | games/xgospel/patches/patch-aa | 12 |
3 files changed, 14 insertions, 6 deletions
diff --git a/games/xgospel/Makefile b/games/xgospel/Makefile index 5d9f867903f..2652afe62f1 100644 --- a/games/xgospel/Makefile +++ b/games/xgospel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2009/06/30 00:07:16 joerg Exp $ +# $NetBSD: Makefile,v 1.18 2009/07/08 17:17:48 joerg Exp $ # DISTNAME= xgospel-1.12d @@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://gailly.net/go.html COMMENT= X11 based IGS client for online "go" playing +PKG_DESTDIR_SUPPORT= user-destdir + MAKE_JOBS_SAFE= no GNU_CONFIGURE= yes diff --git a/games/xgospel/distinfo b/games/xgospel/distinfo index c4771b37a2b..a8ca4474067 100644 --- a/games/xgospel/distinfo +++ b/games/xgospel/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.4 2005/06/11 11:45:53 wiz Exp $ +$NetBSD: distinfo,v 1.5 2009/07/08 17:17:48 joerg Exp $ SHA1 (xgospel-1.12d.tar.gz) = 9d873603b745b1e6046c1407a72e6d6ea474ef37 RMD160 (xgospel-1.12d.tar.gz) = 20e55639ae2ec365ad3698f7709e2bd386380acc Size (xgospel-1.12d.tar.gz) = 699374 bytes -SHA1 (patch-aa) = 3134905ebee6cbe0114e9fad04d8f885cf145fe0 +SHA1 (patch-aa) = 1fccd8f17cc77e139e3184ff45e3aa28e97f0ed7 SHA1 (patch-ab) = 3377d5472486579620f091f69cdf68d47bff4064 SHA1 (patch-ac) = b0a2c73933424f4b480fa7518f1c518f44fcc17b SHA1 (patch-ad) = a9380b25aac5f4f15eada4693956fc7f511d7457 diff --git a/games/xgospel/patches/patch-aa b/games/xgospel/patches/patch-aa index a4491546354..15360f77a8e 100644 --- a/games/xgospel/patches/patch-aa +++ b/games/xgospel/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.2 2005/06/11 11:45:53 wiz Exp $ +$NetBSD: patch-aa,v 1.3 2009/07/08 17:17:48 joerg Exp $ --- Makefile.in.orig 1998-05-08 15:31:05.000000000 +0200 +++ Makefile.in @@ -11,12 +11,18 @@ $NetBSD: patch-aa,v 1.2 2005/06/11 11:45:53 wiz Exp $ CC = @CC@ LEX = @LEX@ -@@ -163,7 +163,7 @@ dummylibs: +@@ -163,12 +163,12 @@ dummylibs: ############################################################################### installdirs: - $(INSTALL_PROGRAM) -d $(bindir) -+ $(BSD_INSTALL_PROGRAM_DIR) -d $(bindir) ++ $(BSD_INSTALL_PROGRAM_DIR) -d ${DESTDIR}$(bindir) install: all installdirs case '${MFLAGS}' in *[ik]*) set +e;; *) set -e;; esac; \ + for p in $(INSTALL_PROGS); do \ +- $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p | sed 's,.*/,,; $(transform)'`; \ ++ $(INSTALL_PROGRAM) $$p ${DESTDIR}$(bindir)/`echo $$p | sed 's,.*/,,; $(transform)'`; \ + done + + uninstall: |