diff options
author | antoine <antoine@FreeBSD.org> | 2014-09-05 03:26:24 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-09-05 03:26:24 +0800 |
commit | 59d49e15cacdc386288d1958cdc1c291dcd919bc (patch) | |
tree | 7fe589d0d1b0e6d00b7aa9cd05fc46ca15de7655 /net-mgmt | |
parent | 990841b6170cce720b6df85c358d10065e9a7fa4 (diff) | |
download | freebsd-ports-gnome-59d49e15cacdc386288d1958cdc1c291dcd919bc.tar.gz freebsd-ports-gnome-59d49e15cacdc386288d1958cdc1c291dcd919bc.tar.zst freebsd-ports-gnome-59d49e15cacdc386288d1958cdc1c291dcd919bc.zip |
Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user
Differential Revision: https://reviews.freebsd.org/D703
Reviewed by and discussed with: bapt
With hat: portmgr
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/flow-tools/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/mk-livestatus/files/patch-src__Makefile.in | 16 |
2 files changed, 0 insertions, 18 deletions
diff --git a/net-mgmt/flow-tools/Makefile b/net-mgmt/flow-tools/Makefile index 3fd7a56650a0..c96ac5674539 100644 --- a/net-mgmt/flow-tools/Makefile +++ b/net-mgmt/flow-tools/Makefile @@ -59,8 +59,6 @@ post-patch: -e 's|@localstatedir@/sym/|${PREFIX}/share/flow-tools/|' \ -e 's|@localstatedir@/cfg/|${PREFIX}/etc/flow-tools/|' \ ${WRKSRC}/docs/flow-*.1.in ${WRKSRC}/docs/flow-*.html.in - @${REINPLACE_CMD} -e '/echo.*RANLIB/,+1d' \ - ${WRKSRC}/lib/Makefile.in post-install: ${INSTALL_MAN} ${WRKSRC}/docs/*.1 ${STAGEDIR}${PREFIX}/man/man1/ diff --git a/net-mgmt/mk-livestatus/files/patch-src__Makefile.in b/net-mgmt/mk-livestatus/files/patch-src__Makefile.in index 0a5f3860c2ff..69491ab6771b 100644 --- a/net-mgmt/mk-livestatus/files/patch-src__Makefile.in +++ b/net-mgmt/mk-livestatus/files/patch-src__Makefile.in @@ -9,19 +9,3 @@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ -@@ -366,15 +366,6 @@ - test -z "$$list2" || { \ - echo " $(INSTALL_DATA) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ - $(INSTALL_DATA) $$list2 "$(DESTDIR)$(pkglibdir)" || exit $$?; } -- @$(POST_INSTALL) -- @list='$(pkglib_LIBRARIES)'; test -n "$(pkglibdir)" || list=; \ -- for p in $$list; do \ -- if test -f $$p; then \ -- $(am__strip_dir) \ -- echo " ( cd '$(DESTDIR)$(pkglibdir)' && $(RANLIB) $$f )"; \ -- ( cd "$(DESTDIR)$(pkglibdir)" && $(RANLIB) $$f ) || exit $$?; \ -- else :; fi; \ -- done - - uninstall-pkglibLIBRARIES: - @$(NORMAL_UNINSTALL) |