diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2000-12-09 06:39:51 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2000-12-09 06:39:51 +0000 |
commit | 9730a5644f0a1742eaf7be271895144cfd5348c2 (patch) | |
tree | e9096914b9b4663ddcf3ed1a4c8510823620507e /graphics/netpbm/files/patch-be | |
parent | Update to 1.7b (diff) |
Upgrade to 9.9
PR: 23386
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=35802
Diffstat (limited to 'graphics/netpbm/files/patch-be')
-rw-r--r-- | graphics/netpbm/files/patch-be | 51 |
1 files changed, 41 insertions, 10 deletions
diff --git a/graphics/netpbm/files/patch-be b/graphics/netpbm/files/patch-be index 040d14ba35c1..9aeb5862ee1c 100644 --- a/graphics/netpbm/files/patch-be +++ b/graphics/netpbm/files/patch-be @@ -1,12 +1,6 @@ ---- pgm/Makefile.orig Fri Aug 4 08:45:21 2000 -+++ pgm/Makefile Sat Aug 5 00:00:00 2000 -@@ -10,11 +10,13 @@ - INCLUDEPBM = -I$(PBMDIR) - LIBPBM = libpbm.$(NETPBMLIBSUFFIX) - --INCLUDE = -I$(SRCDIR) $(INCLUDEPBM) -I$(SRCDIR)/shhopt -+INCLUDE = -I$(SRCDIR) $(INCLUDEPBM) - +--- pgm/Makefile.orig Sat Sep 2 13:00:08 2000 ++++ pgm/Makefile Fri Dec 8 00:00:00 2000 +@@ -16,18 +16,27 @@ NETPBMLIBS = $(LIBPGM) $(PBMDIR)/$(LIBPBM) LIBLIBS = $(PBMDIR)/$(LIBPBM) @@ -15,11 +9,48 @@ PORTBINARIES = asciitopgm bioradtopgm fstopgm hipstopgm \ lispmtopgm pbmtopgm pgmbentley pgmenhance pgmhist \ pgmnoise pgmnorm pgmoil pgmramp pgmslice pgmtofs pgmtolispm \ -@@ -27,6 +29,7 @@ + pgmtopbm psidtopgm spottopgm sbigtopgm +-MATHBINARIES = pgmcrater pgmedge pgmtexture rawtopgm pgmkernel +-BINARIES = $(PORTBINARIES) $(MATHBINARIES) ++MATHBINARIES = pgmcrater pgmedge pgmtexture pgmkernel ++ ++NOMERGEBINARIES = rawtopgm ++ ++MERGEBINARIES = $(PORTBINARIES) $(MATHBINARIES) ++ ++BINARIES = $(MERGEBINARIES) $(NOMERGEBINARIES) + + OBJECTS = $(patsubst %, %.o, $(BINARIES)) +-MERGEBINARIES = $(BINARIES) ++ MERGE_OBJECTS = $(patsubst %,%.o2, $(MERGEBINARIES)) LIBOBJECTS = libpgm1.o libpgm2.o +SHLIBOBJECTS = $(patsubst %.o, %.lo, $(LIBOBJECTS)) ++LIBSHHOPT = $(SRCDIR)/shhopt/libshhopt.a MANUALS1 = $(BINARIES) MANUALS3 = libpgm +@@ -40,7 +49,11 @@ + .PHONY: all + all: $(BINARIES) + .PHONY: merge +-merge: $(MERGENAME) ++merge: $(MERGENAME) $(NOMERGEBINARIES) ++ ++rawtopgm: %: %.o $(NETPBMLIBS) $(LIBOPT) $(LIBSHHOPT) ++ $(LD) $(LDFLAGS) -o $@ $@.o `$(LIBOPT) $(NETPBMLIBS)` \ ++ -lm $(LIBSHHOPT) $(CDEBUG) + + # LIBRARIES + +@@ -60,6 +73,9 @@ + install.man: install.man.common + + include $(SRCDIR)/Makefile.common ++ ++$(SRCDIR)/shhopt/libshhopt.a: ++ cd ../shhopt; $(MAKE) libshhopt.a + + .PHONY: clean + clean: clean.common |