diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2005-03-15 17:35:39 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2005-03-15 17:35:39 +0000 |
commit | c56aa830d9c6a24d969e46a028e3774da763d20a (patch) | |
tree | 9bd8bb81aeba79f81ae3b5155080956debd203a9 /archivers/libarchive | |
parent | 1525548d08f8f7fbc908968f9ce114be19b382f7 (diff) | |
download | ports-c56aa830d9c6a24d969e46a028e3774da763d20a.tar.gz ports-c56aa830d9c6a24d969e46a028e3774da763d20a.zip |
Notes
Diffstat (limited to 'archivers/libarchive')
-rw-r--r-- | archivers/libarchive/Makefile | 2 | ||||
-rw-r--r-- | archivers/libarchive/distinfo | 4 | ||||
-rw-r--r-- | archivers/libarchive/files/patch-archive_read_extract.c | 19 |
3 files changed, 3 insertions, 22 deletions
diff --git a/archivers/libarchive/Makefile b/archivers/libarchive/Makefile index af66df43c82b..98b18e2b15d7 100644 --- a/archivers/libarchive/Makefile +++ b/archivers/libarchive/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= libarchive -PORTVERSION= 1.02.014 +PORTVERSION= 1.02.015 PORTEPOCH= 1 CATEGORIES= archivers MASTER_SITES= http://people.freebsd.org/~kientzle/libarchive/src/ diff --git a/archivers/libarchive/distinfo b/archivers/libarchive/distinfo index 251d528be423..feb81f1a58ea 100644 --- a/archivers/libarchive/distinfo +++ b/archivers/libarchive/distinfo @@ -1,2 +1,2 @@ -MD5 (libarchive-1.02.014.tar.gz) = 4de0006f9a3a6a4e4ad54bf8e6e9c88b -SIZE (libarchive-1.02.014.tar.gz) = 198411 +MD5 (libarchive-1.02.015.tar.gz) = 08940a21a1d86e0dcc9f5ead1d46212e +SIZE (libarchive-1.02.015.tar.gz) = 198041 diff --git a/archivers/libarchive/files/patch-archive_read_extract.c b/archivers/libarchive/files/patch-archive_read_extract.c deleted file mode 100644 index 1187e7c1ba4e..000000000000 --- a/archivers/libarchive/files/patch-archive_read_extract.c +++ /dev/null @@ -1,19 +0,0 @@ -$FreeBSD$ - ---- archive_read_extract.c.orig Mon Mar 14 10:12:52 2005 -+++ archive_read_extract.c Mon Mar 14 10:13:03 2005 -@@ -188,12 +188,13 @@ - * and move to a suitable intermediate dir. - */ - if (strlen(archive_entry_pathname(entry)) > PATH_MAX) { -+ char *intdir, *tail; -+ - /* - * Yes, the copy here is necessary because we edit - * the pathname in-place to create intermediate dirnames. - */ - original_filename = strdup(archive_entry_pathname(entry)); -- char *intdir, *tail; - - restore_pwd = open(".", O_RDONLY); - /* |