1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/graphics/O2-tools/files/patch-bmptopnm__Makefile.in
Dmitry Marakasov deb2b3f8ab Huge image processing tools and libraries.
Most of the programs in this package were designed carefully to
  avoid slowing down even for huge images, e.g. 3300x4700.  I hope
  you will find them better.

  This package contains following programs:
    bmptopnm-O2 (bmptopnm in original distribution)
             - convert a BMP(DIB) file into a portable anymap
    breduce  - read a portable bitmap and reduce it N times
    makecr   - create circumscribing rectangles (bounding box) in an
               image
    makepr   - create Primitive Rectangles in an image
    prlst2ps - produce  PostScript  data  from  rectangle/line-
               segment data
    lpsmooth - smooth an image preserving thin lines

WWW: http://www.imglab.org/p/O2/

PR:		134719
Submitted by:	Hiroto Kagotani <hiroto.kagotani@gmail.com>
2009-05-31 22:34:51 +00:00

29 lines
828 B
Plaintext

--- ./bmptopnm/Makefile.in.orig 2008-12-31 00:03:50.000000000 +0900
+++ ./bmptopnm/Makefile.in 2009-05-18 16:38:03.000000000 +0900
@@ -34,7 +34,7 @@
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
-bin_PROGRAMS = bmptopnm$(EXEEXT)
+bin_PROGRAMS = bmptopnm-O2$(EXEEXT)
subdir = bmptopnm
DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in
@@ -146,9 +146,15 @@
bmptopnm_SOURCES = bmptopnm.cpp
AM_CXXFLAGS = -I../include
bmptopnm_LDADD = -L../lib -lufp -lsip
-dist_man_MANS = bmptopnm.1
+dist_man_MANS = bmptopnm-O2.1
all: all-am
+bmptopnm-O2$(EXEEXT): bmptopnm$(EXEEXT)
+ cp bmptopnm$(EXEEXT) bmptopnm-O2$(EXEEXT)
+
+bmptopnm-O2.1: bmptopnm.1
+ cp bmptopnm.1 bmptopnm-O2.1
+
.SUFFIXES:
.SUFFIXES: .cpp .o .obj
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)