diff options
author | schmonz <schmonz> | 2005-08-18 19:20:34 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2005-08-18 19:20:34 +0000 |
commit | 844cb954293eb6475193e14cd3c7516b45c6cfb8 (patch) | |
tree | 6b16cc924e96feb4dc41468993cf791ac69b27c1 | |
parent | 5e766344035713ba400ec02b625f0515d9d6fcdc (diff) | |
download | pkgsrc-844cb954293eb6475193e14cd3c7516b45c6cfb8.tar.gz |
Update to 1.025. From the changelog:
- Added the capability to bg-installer to handle multiple destinations
within the same source list.
- Renamed the "setmode" function in bg-installer that was causing
compile problems on *BSD systems.
- Added a sysdep for struct timespec and clock_gettime, which are
defined if not present.
-rw-r--r-- | devel/bglibs/Makefile | 4 | ||||
-rw-r--r-- | devel/bglibs/distinfo | 9 | ||||
-rw-r--r-- | devel/bglibs/patches/patch-aa | 31 |
3 files changed, 6 insertions, 38 deletions
diff --git a/devel/bglibs/Makefile b/devel/bglibs/Makefile index 764be6de968..c2f9f448727 100644 --- a/devel/bglibs/Makefile +++ b/devel/bglibs/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2005/07/15 05:45:00 schmonz Exp $ +# $NetBSD: Makefile,v 1.6 2005/08/18 19:20:34 schmonz Exp $ # -DISTNAME= bglibs-1.024 +DISTNAME= bglibs-1.025 CATEGORIES= devel MASTER_SITES= ${HOMEPAGE} diff --git a/devel/bglibs/distinfo b/devel/bglibs/distinfo index 58b8a48fb51..24254f04412 100644 --- a/devel/bglibs/distinfo +++ b/devel/bglibs/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.3 2005/07/15 05:45:00 schmonz Exp $ +$NetBSD: distinfo,v 1.4 2005/08/18 19:20:34 schmonz Exp $ -SHA1 (bglibs-1.024.tar.gz) = c0baed53730115a57b6b2cc050fe2f4979679835 -RMD160 (bglibs-1.024.tar.gz) = 9077e847717b28365d2485ed3c73603efd274af7 -Size (bglibs-1.024.tar.gz) = 313463 bytes -SHA1 (patch-aa) = 78a4b4ee0f2270d52378142d51bc21a09f2ccf4e +SHA1 (bglibs-1.025.tar.gz) = aa8d5b58a76d331ee6a1e33b455ef13e5bf2caed +RMD160 (bglibs-1.025.tar.gz) = aefbddadb3f72e9a3abd015d370d06229ef4076d +Size (bglibs-1.025.tar.gz) = 315023 bytes diff --git a/devel/bglibs/patches/patch-aa b/devel/bglibs/patches/patch-aa deleted file mode 100644 index f42833fbc88..00000000000 --- a/devel/bglibs/patches/patch-aa +++ /dev/null @@ -1,31 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2005/07/15 05:45:00 schmonz Exp $ - ---- bg-installer.c.orig 2005-07-11 00:47:35.000000000 -0400 -+++ bg-installer.c -@@ -151,7 +151,7 @@ static void show(char type, unsigned uid - obuf_endl(&outbuf); - } - --static void setmode(const char* filename, -+static void bgsetmode(const char* filename, - unsigned uid, unsigned gid, unsigned mode) - { - if (chown(filename, uid, gid) != 0) -@@ -201,7 +201,7 @@ static void c(unsigned uid, unsigned gid - if (!ibuf_copytofd(&in, out) - || close(out) != 0) - diefsys(1, "{Could not write '}s{'}", pathtmp.s); -- setmode(pathtmp.s, uid, gid, mode); -+ bgsetmode(pathtmp.s, uid, gid, mode); - if (rename(pathtmp.s, path.s) != 0) - diefsys(1, "{Could not rename '}s{' to '}s{'}", pathtmp.s, path.s); - ibuf_close(&in); -@@ -224,7 +224,7 @@ static void d(unsigned uid, unsigned gid - } - else if (!S_ISDIR(st.st_mode)) - dief(1, "{Path '}s{' exists but is not a directory}", path.s); -- setmode(path.s, uid, gid, mode); -+ bgsetmode(path.s, uid, gid, mode); - } - - if (opt_check) { |