diff options
author | Rusmir Dusko <nemysis@FreeBSD.org> | 2014-02-03 11:09:44 +0000 |
---|---|---|
committer | Rusmir Dusko <nemysis@FreeBSD.org> | 2014-02-03 11:09:44 +0000 |
commit | f81a2160b9f47e63f17c686e3ad35e76f6df0888 (patch) | |
tree | 12d1b08f5f5e89629b0a9202bf4d4b1da6dd31cd /math/ndiff/files/patch-Makefile.in | |
parent | - STAGE-clean (diff) |
- Remove PKGNAMEPREFIX
- Change comment
- Pass maintainership to submitter
- Add license (GPLv2)
- Support STAGEDIR
- Simplify Option handling, change GMP Option
- Add USES desthack, change REINPLACE and patch-Makefile.in
- Use PLIST_FILES and PLIST_DIRS instead of pkg-plist
- Change DOCS and add DOCS Option
PR: ports/186243
Submitted by: Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
Notes
Notes:
svn path=/head/; revision=342419
Diffstat (limited to 'math/ndiff/files/patch-Makefile.in')
-rw-r--r-- | math/ndiff/files/patch-Makefile.in | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/math/ndiff/files/patch-Makefile.in b/math/ndiff/files/patch-Makefile.in index 97f77a17614b..dbfb54277387 100644 --- a/math/ndiff/files/patch-Makefile.in +++ b/math/ndiff/files/patch-Makefile.in @@ -1,24 +1,14 @@ ---- Makefile.in.orig Tue Dec 12 11:11:11 2000 -+++ Makefile.in Wed Dec 15 23:53:21 2004 -@@ -64,8 +64,7 @@ - catdir = $(prefix)/man/cat$(manext) - mandir = $(prefix)/man/man$(manext) - manext = 1 --shrlibdir = $(shrlibtop)/$(PROGNAME)-$(VERSION) --shrlibtop = $(prefix)/share/lib/$(PROGNAME) -+shrlibdir = %%DATADIR%% - - FTPDIR = /u/ftp/pub/misc - +--- Makefile.in.orig 2000-12-12 19:11:11.000000000 +0100 ++++ Makefile.in 2014-02-02 11:56:29.000000000 +0100 @@ -191,9 +190,9 @@ DEFINES = -DVERSION='"@VERSION@"' -DDATE='"@DATE@"' $(XDEFINES) -INCLUDES = -I. -I$(prefix)/include $(XINCLUDES) -+INCLUDES = -I. $(XINCLUDES) ++INCLUDES ?= -I. $(XINCLUDES) -LDFLAGS = @LDFLAGS@ -L$(prefix)/lib $(XLDFLAGS) -+LDFLAGS = @LDFLAGS@ $(XLDFLAGS) ++LDFLAGS ?= @LDFLAGS@ $(XLDFLAGS) LIBS = @LIBS@ $(XLIBS) @@ -34,11 +24,11 @@ $(SEDCMD) $$f | $(CHECKSUM) > $(bindir)/$$g ; \ - $(LN) $(bindir)/$$g $(bindir)/$$g-$(VERSION) ; \ - $(CHMOD) 775 $(bindir)/$$g $(bindir)/$$g-$(VERSION) ; \ -+ $(CHMOD) 775 $(bindir)/$$g ; \ ++ $(CHMOD) 755 $(bindir)/$$g ; \ done ; \ fi -@@ -635,15 +632,13 @@ +@@ -635,7 +632,7 @@ install-show: @echo '' @echo Installed files... @@ -47,15 +37,6 @@ @$(LS) -l $(mandir)/$(PROGNAME).$(manext) @if test -d $(shrlibdir) ; then $(LS) -lR $(shrlibdir)/* ; fi @echo '' - - install-shrlib: uninstall-shrlib -- -$(MKDIR) $(shrlibtop) -- @if test -d $(shrlibtop) ; then true ; else echo Cannot create $(shrlibtop) ; exit 1 ; fi -- -$(MKDIR) $(shrlibdir) -+ -$(MKDIR) -p $(shrlibdir) - @if test -d $(shrlibdir) ; then true ; else echo Cannot create $(shrlibdir) ; exit 1 ; fi - for f in $(SHRLIBFILES) ; \ - do \ @@ -703,7 +698,7 @@ uninstall-exe: -for f in $(PROGRAMS) ; \ |