diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-11 22:04:09 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-11 22:04:09 +0000 |
commit | 5f957cbaba96350964b357db5ed3b76eb9d719c0 (patch) | |
tree | 19ed02ced0800441c8568b58f95af2ddf1b7cc02 /net/latd | |
parent | 73fdebd8393f1f8c55088920fbbb18e72efc9805 (diff) | |
download | pkgsrc-5f957cbaba96350964b357db5ed3b76eb9d719c0.tar.gz |
DESTDIR support
Diffstat (limited to 'net/latd')
-rw-r--r-- | net/latd/Makefile | 4 | ||||
-rw-r--r-- | net/latd/distinfo | 4 | ||||
-rw-r--r-- | net/latd/patches/patch-ac | 6 |
3 files changed, 8 insertions, 6 deletions
diff --git a/net/latd/Makefile b/net/latd/Makefile index 7eef0e8e06b..51633b22b63 100644 --- a/net/latd/Makefile +++ b/net/latd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2007/02/22 19:26:53 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2010/02/11 22:04:14 joerg Exp $ # DISTNAME= latd-1.18 @@ -9,6 +9,8 @@ MAINTAINER= fredette@theory.lcs.mit.edu HOMEPAGE= http://theory.lcs.mit.edu/~fredette/latd/index.html COMMENT= The linux-decnet project's LAT protocol suite +PKG_DESTDIR_SUPPORT= user-destdir + NOT_FOR_PLATFORM= Interix-*-* # no direct ethernet support GNU_CONFIGURE= yes diff --git a/net/latd/distinfo b/net/latd/distinfo index db60be7ee2a..6e185985215 100644 --- a/net/latd/distinfo +++ b/net/latd/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.5 2007/01/27 10:33:25 wiz Exp $ +$NetBSD: distinfo,v 1.6 2010/02/11 22:04:14 joerg Exp $ SHA1 (latd-1.18.tar.gz) = a7cecdb97507f485e726ea4c2fef0a59ad3adbae RMD160 (latd-1.18.tar.gz) = a0be3bd71b76c6a07c47fc2ad863526303d365bf Size (latd-1.18.tar.gz) = 233882 bytes SHA1 (patch-aa) = 70e2a543f471c9a818bfbe138137920d605d5aa9 SHA1 (patch-ab) = 8729c74907ac9ea077e9ddf1131cc4af6ecedcc7 -SHA1 (patch-ac) = adbe7b78bce30b6fbf540a18922ddb073cfccf0c +SHA1 (patch-ac) = c078151ba47ef878937e9cf818a3d0ad6dd3be7b SHA1 (patch-ad) = f606a87bf3dff0571db3ededc6889e31f2012397 SHA1 (patch-ae) = 931842733d2166c0fd29b5f0d0772c44f1d79fd3 SHA1 (patch-af) = 3b2f723ec163d925dee42b7d6597f8219ebe22df diff --git a/net/latd/patches/patch-ac b/net/latd/patches/patch-ac index 25cc883bedb..b8ad587d013 100644 --- a/net/latd/patches/patch-ac +++ b/net/latd/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.1 2003/10/21 20:55:42 xtraeme Exp $ +$NetBSD: patch-ac,v 1.2 2010/02/11 22:04:14 joerg Exp $ --- Makefile.in.orig 2003-10-20 19:18:37.000000000 +0200 +++ Makefile.in 2003-10-20 19:20:20.000000000 +0200 @@ -7,14 +7,14 @@ $NetBSD: patch-ac,v 1.1 2003/10/21 20:55:42 xtraeme Exp $ install-sysconfDATA: $(sysconf_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(sysconfdir) -+ $(mkinstalldirs) $(PREFIX)/share/examples/latd ++ $(mkinstalldirs) ${DESTDIR}$(PREFIX)/share/examples/latd @list='$(sysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(sysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(sysconfdir)/$$f"; \ - $(sysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(sysconfdir)/$$f; \ + echo " $(sysconfDATA_INSTALL) $$d$$p $(PREFIX)/share/examples/latd/$$f"; \ -+ $(sysconfDATA_INSTALL) $$d$$p $(PREFIX)/share/examples/latd/$$f; \ ++ $(sysconfDATA_INSTALL) $$d$$p ${DESTDIR}$(PREFIX)/share/examples/latd/$$f; \ done uninstall-sysconfDATA: |