diff options
author | William Grzybowski <wg@FreeBSD.org> | 2013-07-17 15:25:01 +0000 |
---|---|---|
committer | William Grzybowski <wg@FreeBSD.org> | 2013-07-17 15:25:01 +0000 |
commit | cc9b2e7ec243ab3637f943cdee4a71f56f3863aa (patch) | |
tree | a2fa65a7bda2cc990cda6b72e2ae819c1bd75ddd /devel/fpp/files/patch-src-Makefile.common | |
parent | graphics/nomacs: update to 1.4.0 (diff) |
devel/fpp: minor fixes
- Trim Makefile header
- NOPORTDOCS -> PORT_OPTIONS:MDOCS
- Do not use GMAKE
- Use PLIST_FILES instead of pkg-plist
PR: ports/180578
Submitted by: Anton Shterenlikht <mexas bris.ac.uk>
Diffstat (limited to 'devel/fpp/files/patch-src-Makefile.common')
-rw-r--r-- | devel/fpp/files/patch-src-Makefile.common | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/devel/fpp/files/patch-src-Makefile.common b/devel/fpp/files/patch-src-Makefile.common new file mode 100644 index 000000000000..9ed4e15dacae --- /dev/null +++ b/devel/fpp/files/patch-src-Makefile.common @@ -0,0 +1,22 @@ +--- src/Makefile.common.orig Tue Mar 18 21:23:18 1997 ++++ src/Makefile.common Mon Oct 21 14:08:06 2002 +@@ -20,7 +20,7 @@ + fpp: $(OBJ) $(OBJ1) $(EXTRA_LIB) + $(CC) $(COPTS) -o $@ $(OBJ) $(OBJ1) $(EXTRA_LIB) + +-$(OBJ): $$(@:%.o=$(SRC)/%.c) ++$(OBJ): #$$(@:%.o=$(SRC)/%.c) + $(CC) -c $(ALL_OPTS) $(@:%.o=$(SRC)/%.c) + + y.tab.o: y.tab.c +@@ -34,8 +34,8 @@ + lint: $(LINTFILES) + $(LINT) $(LINTFILES) + +-$(LINTFILES): $$(@:%.ln=$(SRC)/%.c) +- $(LINT) $(LOPTS) $(EXTRA_DEF) $(EXTRA_INC) $(@:%.ln=$(SRC)/%.c) ++#$(LINTFILES): $$(@:%.ln=$(SRC)/%.c) ++# $(LINT) $(LOPTS) $(EXTRA_DEF) $(EXTRA_INC) $(@:%.ln=$(SRC)/%.c) + + clean: + $(RM) fpp *.o y.tab.c $(LINTFILES) |