diff options
author | bouyer <bouyer> | 2007-04-20 18:52:34 +0000 |
---|---|---|
committer | bouyer <bouyer> | 2007-04-20 18:52:34 +0000 |
commit | f7fbabf373b291dad11d568be3eea1114c95be0a (patch) | |
tree | 2faee73a9a20c94a968d11115f2617b6c64514bd /mail/sympa | |
parent | e6c1e32f7a196a6037ec470999ad70934496c790 (diff) | |
download | pkgsrc-f7fbabf373b291dad11d568be3eea1114c95be0a.tar.gz |
cp -R behaves differently on netbsd-4 and previous releases, leading to
an extra html/ directory being created in docs. Changes html/ to html/.
to avoid this extra directory on netbsd-4. Should definitively fix
pkg/36007.
Bump PKGREVISION.
Diffstat (limited to 'mail/sympa')
-rw-r--r-- | mail/sympa/Makefile | 3 | ||||
-rw-r--r-- | mail/sympa/distinfo | 3 | ||||
-rw-r--r-- | mail/sympa/patches/patch-ae | 9 |
3 files changed, 13 insertions, 2 deletions
diff --git a/mail/sympa/Makefile b/mail/sympa/Makefile index ff94c54e946..36927b2f9fa 100644 --- a/mail/sympa/Makefile +++ b/mail/sympa/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.26 2007/03/28 20:54:28 bouyer Exp $ +# $NetBSD: Makefile,v 1.27 2007/04/20 18:52:34 bouyer Exp $ # DISTNAME= sympa-5.2.4 +PKGREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.sympa.org/distribution/ diff --git a/mail/sympa/distinfo b/mail/sympa/distinfo index 92e1a3b05d8..0874e028353 100644 --- a/mail/sympa/distinfo +++ b/mail/sympa/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2007/03/28 20:51:09 bouyer Exp $ +$NetBSD: distinfo,v 1.8 2007/04/20 18:52:34 bouyer Exp $ SHA1 (sympa-5.2.4.tar.gz) = 8c250b9637c54cc8bc07085994721c7e379fc9a5 RMD160 (sympa-5.2.4.tar.gz) = eaad800b25b03ec45a906bd2c6dfe4981dfb4e8f @@ -6,4 +6,5 @@ Size (sympa-5.2.4.tar.gz) = 5140447 bytes SHA1 (patch-aa) = 61e523ef848ef4698204a5ebef70e4af5df62081 SHA1 (patch-ab) = b72ef22e9bf27e4f2994c9c7ee72ed8f9e6eb553 SHA1 (patch-ac) = 77802bab188da024c18810c07bf62064b28e3af1 +SHA1 (patch-ae) = 28279bf0f1dad1e3cf0e6e5985e6f9cbdbb19426 SHA1 (patch-af) = ec05dfef197d7d2c3c655117994534478a615403 diff --git a/mail/sympa/patches/patch-ae b/mail/sympa/patches/patch-ae new file mode 100644 index 00000000000..c4c4512654b --- /dev/null +++ b/mail/sympa/patches/patch-ae @@ -0,0 +1,9 @@ +--- doc/Makefile.orig 2007-04-13 20:20:26.000000000 +0200 ++++ doc/Makefile 2007-04-13 20:21:08.000000000 +0200 +@@ -151,7 +151,7 @@ + @if [ -d $(DESTDIR)$(DOCDIR)/html ]; then \ + rm -rf $(DESTDIR)$(DOCDIR)/html; \ + fi +- cp -R html/ $(DESTDIR)$(DOCDIR) ++ cp -R html/. $(DESTDIR)$(DOCDIR) + |