summaryrefslogtreecommitdiff
path: root/cross/avr-libc
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2012-08-29 09:51:29 +0000
committerdrochner <drochner@pkgsrc.org>2012-08-29 09:51:29 +0000
commitdd29af638d356553958cb92be4418066a0b8621b (patch)
treed780562ff450fe073259fb843c374815a70db651 /cross/avr-libc
parent8f10ca11fdea5b1abf0f161c4f48c902106329aa (diff)
downloadpkgsrc-dd29af638d356553958cb92be4418066a0b8621b.tar.gz
make the shell pattern to exclude unwanted manpages work
update PLIST for current doxygen bump PKGREV
Diffstat (limited to 'cross/avr-libc')
-rw-r--r--cross/avr-libc/Makefile4
-rw-r--r--cross/avr-libc/PLIST4
-rw-r--r--cross/avr-libc/distinfo4
-rw-r--r--cross/avr-libc/patches/patch-doc_api_Makefile_am4
4 files changed, 9 insertions, 7 deletions
diff --git a/cross/avr-libc/Makefile b/cross/avr-libc/Makefile
index 089fbbcf4b2..21b2023f496 100644
--- a/cross/avr-libc/Makefile
+++ b/cross/avr-libc/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.20 2012/08/18 15:13:51 dsainty Exp $
+# $NetBSD: Makefile,v 1.21 2012/08/29 09:51:29 drochner Exp $
DISTNAME= avr-libc-1.6.7
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= cross
MASTER_SITES= http://savannah.nongnu.org/download/avr-libc/
EXTRACT_SUFX= .tar.bz2
diff --git a/cross/avr-libc/PLIST b/cross/avr-libc/PLIST
index a152c2e32c9..1c51e7df4c2 100644
--- a/cross/avr-libc/PLIST
+++ b/cross/avr-libc/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2012/08/18 15:13:51 dsainty Exp $
+@comment $NetBSD: PLIST,v 1.12 2012/08/29 09:51:29 drochner Exp $
avr/include/alloca.h
avr/include/assert.h
avr/include/avr/boot.h
@@ -625,6 +625,8 @@ share/doc/avr-libc/avr-libc-user-manual/strtok__r_8S.html
share/doc/avr-libc/avr-libc-user-manual/structdiv__t.html
share/doc/avr-libc/avr-libc-user-manual/structldiv__t.html
share/doc/avr-libc/avr-libc-user-manual/strupr_8S.html
+share/doc/avr-libc/avr-libc-user-manual/sync_off.png
+share/doc/avr-libc/avr-libc-user-manual/sync_on.png
share/doc/avr-libc/avr-libc-user-manual/tab_a.png
share/doc/avr-libc/avr-libc-user-manual/tab_b.png
share/doc/avr-libc/avr-libc-user-manual/tab_h.png
diff --git a/cross/avr-libc/distinfo b/cross/avr-libc/distinfo
index 3da1c59c0e5..5074a535613 100644
--- a/cross/avr-libc/distinfo
+++ b/cross/avr-libc/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2012/08/18 15:13:51 dsainty Exp $
+$NetBSD: distinfo,v 1.9 2012/08/29 09:51:29 drochner Exp $
SHA1 (avr-libc-1.6.7.tar.bz2) = bed0bc1538735ab7049ab7af0b7d889b1a6f8956
RMD160 (avr-libc-1.6.7.tar.bz2) = a80048a715a8b56108e2f79f43dc82725a4bf0f8
Size (avr-libc-1.6.7.tar.bz2) = 1272043 bytes
-SHA1 (patch-doc_api_Makefile_am) = 6abe1acb37d87f310ad87f3d35b347f11dcc2a5c
+SHA1 (patch-doc_api_Makefile_am) = 6a5137a8d9a0aaf156c29b059609b68a66ce798f
diff --git a/cross/avr-libc/patches/patch-doc_api_Makefile_am b/cross/avr-libc/patches/patch-doc_api_Makefile_am
index 22005500897..6e30a6e4587 100644
--- a/cross/avr-libc/patches/patch-doc_api_Makefile_am
+++ b/cross/avr-libc/patches/patch-doc_api_Makefile_am
@@ -1,4 +1,4 @@
-$NetBSD: patch-doc_api_Makefile_am,v 1.1 2012/08/18 15:13:51 dsainty Exp $
+$NetBSD: patch-doc_api_Makefile_am,v 1.2 2012/08/29 09:51:29 drochner Exp $
Doxygen produces man pages for the build directories too, which we really
don't want to install. These are tricky to match, but are the man pages
@@ -10,7 +10,7 @@ that start and finish with a single underscore character. Prune them out.
$(mkinstalldirs) $(DOC_INST_DIR)/man/man3
@list='$(wildcard man/man3/*.3)'; \
for file in $$list ; do \
-+ case "$$file" in */_[^_]*[^_]_.3) continue;; esac; \
++ case "$$file" in */_[!_]*[!_]_.3) continue;; esac; \
echo " $(INSTALL_DATA) $$file $(DOC_INST_DIR)/$$file"; \
$(INSTALL_DATA) $$file $(DOC_INST_DIR)/$$file; \
done