diff options
author | joerg <joerg@pkgsrc.org> | 2009-02-16 19:12:00 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-02-16 19:12:00 +0000 |
commit | ecf7feebf8fb8de1f6967bb134f1f12dc36f2efb (patch) | |
tree | 950deea6baa27e406e7f6b0af1d43dbd2fd05113 /ham/tfkiss/patches | |
parent | 36ff59238e0bdff20ab5a26b2a110ae844afcff4 (diff) | |
download | pkgsrc-ecf7feebf8fb8de1f6967bb134f1f12dc36f2efb.tar.gz |
DESTDIR support
Diffstat (limited to 'ham/tfkiss/patches')
-rw-r--r-- | ham/tfkiss/patches/patch-ac | 15 | ||||
-rw-r--r-- | ham/tfkiss/patches/patch-ad | 17 | ||||
-rw-r--r-- | ham/tfkiss/patches/patch-ae | 17 |
3 files changed, 49 insertions, 0 deletions
diff --git a/ham/tfkiss/patches/patch-ac b/ham/tfkiss/patches/patch-ac new file mode 100644 index 00000000000..9395ce0049a --- /dev/null +++ b/ham/tfkiss/patches/patch-ac @@ -0,0 +1,15 @@ +$NetBSD: patch-ac,v 1.1 2009/02/16 19:19:01 joerg Exp $ + +--- src/Makefile.in.orig 2009-02-16 20:15:02.000000000 +0100 ++++ src/Makefile.in +@@ -72,8 +72,8 @@ tfkiss: $(OBJS) + $(CC) $(CFLAGS) $(OBJS) $(LIBS) $(LDFLAGS) -o tfkiss; + + install: +- $(MKDIR) ${tfkiss_main_dir}/sbin; \ +- $(INSTALL_PROGRAM) tfkiss ${tfkiss_main_dir}/sbin; ++ $(MKDIR) ${DESTDIR}${tfkiss_main_dir}/sbin; \ ++ $(INSTALL_PROGRAM) tfkiss ${DESTDIR}${tfkiss_main_dir}/sbin; + + clean: + rm -f *.o *.core tfkiss .depend diff --git a/ham/tfkiss/patches/patch-ad b/ham/tfkiss/patches/patch-ad new file mode 100644 index 00000000000..a6a26ef39bc --- /dev/null +++ b/ham/tfkiss/patches/patch-ad @@ -0,0 +1,17 @@ +$NetBSD: patch-ad,v 1.1 2009/02/16 19:19:01 joerg Exp $ + +--- doc/Makefile.in.orig 2009-02-16 20:15:37.000000000 +0100 ++++ doc/Makefile.in +@@ -15,10 +15,10 @@ DOCS = alas.eng alas.txt copyrght.txt rf + all: + + install: +- $(MKDIR) ${tfkiss_doc_dir} ++ $(MKDIR) ${DESTDIR}${tfkiss_doc_dir} + @for i in $(DOCS); \ + do \ +- $(INSTALL_DATA) $$i ${tfkiss_doc_dir}; \ ++ $(INSTALL_DATA) $$i ${DESTDIR}${tfkiss_doc_dir}; \ + done; + + clean: diff --git a/ham/tfkiss/patches/patch-ae b/ham/tfkiss/patches/patch-ae new file mode 100644 index 00000000000..293b963f465 --- /dev/null +++ b/ham/tfkiss/patches/patch-ae @@ -0,0 +1,17 @@ +$NetBSD: patch-ae,v 1.1 2009/02/16 19:19:01 joerg Exp $ + +--- examples/Makefile.in.orig 2009-02-16 20:16:44.000000000 +0100 ++++ examples/Makefile.in +@@ -15,10 +15,10 @@ CFGS = tfkiss.ini tfkiss.cfg + all: + + install: +- $(MKDIR) ${tfkiss_conf_dir} ++ $(MKDIR) ${DESTDIR}${tfkiss_conf_dir} + @for i in $(CFGS); \ + do \ +- $(INSTALL_DATA) $$i ${tfkiss_conf_dir}; \ ++ $(INSTALL_DATA) $$i ${DESTDIR}${tfkiss_conf_dir}; \ + done; + + clean: |