diff options
author | minskim <minskim@pkgsrc.org> | 2004-12-25 01:14:31 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-12-25 01:14:31 +0000 |
commit | 442ec5efdfbcc311efeaf63a8568fcc2cdb7490d (patch) | |
tree | a5f73d4707355262ea3bd7c3e4ed10cdea460f41 /devel/asm2html | |
parent | 2f0e9f2df55177d19e89716ba450265a87531ff7 (diff) | |
download | pkgsrc-442ec5efdfbcc311efeaf63a8568fcc2cdb7490d.tar.gz |
Use BSD_INSTALL_* to set permission and ownership correctly.
Diffstat (limited to 'devel/asm2html')
-rw-r--r-- | devel/asm2html/distinfo | 4 | ||||
-rw-r--r-- | devel/asm2html/patches/patch-aa | 13 | ||||
-rw-r--r-- | devel/asm2html/patches/patch-ab | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/devel/asm2html/distinfo b/devel/asm2html/distinfo index 8ecfd1395b8..e94d0d53be2 100644 --- a/devel/asm2html/distinfo +++ b/devel/asm2html/distinfo @@ -1,4 +1,6 @@ -$NetBSD: distinfo,v 1.4 2003/06/03 13:55:23 wiz Exp $ +$NetBSD: distinfo,v 1.5 2004/12/25 01:14:31 minskim Exp $ SHA1 (asm2html-1.4.tar.gz) = 178ed3f2f7be8d70848f5d6a6162dfd741bc8b88 Size (asm2html-1.4.tar.gz) = 33975 bytes +SHA1 (patch-aa) = f5d0660d91ab58a12f894da948751a71196cdd06 +SHA1 (patch-ab) = 1ff0f9c5acecf9d4dabd2626350e84430417aea6 diff --git a/devel/asm2html/patches/patch-aa b/devel/asm2html/patches/patch-aa new file mode 100644 index 00000000000..2fd7296b510 --- /dev/null +++ b/devel/asm2html/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2004/12/25 01:14:31 minskim Exp $ + +--- src/Makefile.in.orig 2003-04-25 13:37:51.000000000 -0500 ++++ src/Makefile.in +@@ -18,7 +16,7 @@ process.o: process.c + $(CC) $(CFLAGS) $(INC) -c process.c + + install: +- install -c -s -o root -g wheel -m 555 asm2html ${INSDIR}/asm2html ++ $(BSD_INSTALL_PROGRAM) asm2html ${INSDIR}/asm2html + + uninstall: + rm -f $(INSDIR)/asm2html diff --git a/devel/asm2html/patches/patch-ab b/devel/asm2html/patches/patch-ab new file mode 100644 index 00000000000..de640606edb --- /dev/null +++ b/devel/asm2html/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2004/12/25 01:14:31 minskim Exp $ + +--- man/Makefile.in.orig 2003-04-25 13:41:31.000000000 -0500 ++++ man/Makefile.in +@@ -1,7 +1,7 @@ + INSDIR=@prefix@/man/man1 + + install: +- install -c -o root -g wheel -m 444 asm2html.1 ${INSDIR}/asm2html.1 ++ $(BSD_INSTALL_MAN) asm2html.1 ${INSDIR}/asm2html.1 + + uninstall: + rm -f $(INSDIR)/asm2html.1 |