1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

- Update to 0.3.0

Approved by:	jadawin@, miwi@ (mentors, implicit)
This commit is contained in:
Sofian Brabez 2012-02-04 03:23:53 +00:00
parent 5b7c3ecbe9
commit 96cc2bbaca
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=290372
4 changed files with 20 additions and 7 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= pax-utils
PORTVERSION= 0.2.3
PORTVERSION= 0.3.0
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GENTOO} \
http://dev.gentoo.org/~vapier/dist/

View File

@ -1,2 +1,2 @@
SHA256 (pax-utils-0.2.3.tar.xz) = b2cdc20a0c67b78753ff4c4cbaa84b8175b0e2eb926de7390daef34a19297285
SIZE (pax-utils-0.2.3.tar.xz) = 76652
SHA256 (pax-utils-0.3.0.tar.xz) = d6d2992a40d89ab02d39a90d3c88ef553ecf1c9b93bae82efe16453b9152696a
SIZE (pax-utils-0.3.0.tar.xz) = 79892

View File

@ -1,6 +1,6 @@
--- ./Makefile.orig 2010-02-14 19:14:16.000000000 +0100
+++ ./Makefile 2010-11-12 00:49:47.000000000 +0100
@@ -21,7 +21,7 @@
--- ./Makefile.orig 2012-01-24 00:49:40.000000000 +0100
+++ ./Makefile 2012-02-04 04:30:30.000000000 +0100
@@ -24,7 +24,7 @@
LDFLAGS +=
LIBS :=
DESTDIR =
@ -9,7 +9,7 @@
STRIP := strip
MKDIR := mkdir -p
CP := cp
@@ -97,15 +97,15 @@
@@ -100,15 +100,15 @@
$(STRIP) --strip-unneeded $(TARGETS)
install: all

View File

@ -0,0 +1,13 @@
--- ./scanelf.c.orig 2012-02-04 05:19:34.000000000 +0100
+++ ./scanelf.c 2012-02-04 05:19:59.000000000 +0100
@@ -14,6 +14,10 @@
#define IS_MODIFIER(c) (c == '%' || c == '#' || c == '+')
+#ifndef O_CLOEXEC
+#define O_CLOEXEC 0x00100000
+#endif
+
/* prototypes */
static int file_matches_list(const char *filename, char **matchlist);