diff options
author | drochner <drochner@pkgsrc.org> | 2012-08-29 09:51:29 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2012-08-29 09:51:29 +0000 |
commit | 714b5e5f49200ed12b5f7c36131a190ce67d1045 (patch) | |
tree | d780562ff450fe073259fb843c374815a70db651 /cross | |
parent | c3be8d9c21aaf2ef48f1ffad496e6c3ca375cb7e (diff) | |
download | pkgsrc-714b5e5f49200ed12b5f7c36131a190ce67d1045.tar.gz |
make the shell pattern to exclude unwanted manpages work
update PLIST for current doxygen
bump PKGREV
Diffstat (limited to 'cross')
-rw-r--r-- | cross/avr-libc/Makefile | 4 | ||||
-rw-r--r-- | cross/avr-libc/PLIST | 4 | ||||
-rw-r--r-- | cross/avr-libc/distinfo | 4 | ||||
-rw-r--r-- | cross/avr-libc/patches/patch-doc_api_Makefile_am | 4 |
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 |