aboutsummaryrefslogtreecommitdiff
path: root/graphics/sane-backends/files
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2001-04-05 15:15:13 +0000
committerKevin Lo <kevlo@FreeBSD.org>2001-04-05 15:15:13 +0000
commit5207f70b227f679c2a314a051269a49d73a1be15 (patch)
treef5b484b643ad8081947ebed3849780afc1a40e65 /graphics/sane-backends/files
parent6fcc65266d8144de6e34a01f2d7d6ce6013f31ce (diff)
downloadports-5207f70b227f679c2a314a051269a49d73a1be15.tar.gz
ports-5207f70b227f679c2a314a051269a49d73a1be15.zip
- Eliminate needless patching
- Fix pkg-plist PR: 26332 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=40890
Diffstat (limited to 'graphics/sane-backends/files')
-rw-r--r--graphics/sane-backends/files/patch-backend_Makefile.in37
1 files changed, 0 insertions, 37 deletions
diff --git a/graphics/sane-backends/files/patch-backend_Makefile.in b/graphics/sane-backends/files/patch-backend_Makefile.in
deleted file mode 100644
index 62ad8cfb1dbe..000000000000
--- a/graphics/sane-backends/files/patch-backend_Makefile.in
+++ /dev/null
@@ -1,37 +0,0 @@
---- backend/Makefile.in.orig Thu Nov 30 20:05:49 2000
-+++ backend/Makefile.in Mon Apr 2 09:15:36 2001
-@@ -69,7 +69,7 @@
- LIBOBJS = $(addprefix ../lib/,$(addsuffix .lo,$(LIBLIB_FUNCS)))
-
- libsane-%.la: %.lo %-s.lo $(EXTRA) $(LIBOBJS)
-- @$(LIBTOOL) $(MLINK) $(CC) -export-dynamic -o $@ $($*_LIBS) \
-+ @$(LIBTOOL) $(MLINK) $(CC) -avoid-version -module -o $@ $($*_LIBS) \
- $(LDFLAGS) $(BACKENDLIBS) $^ -rpath $(libsanedir) \
- -version-info $(V_MAJOR):$(V_REV):$(V_MINOR)
-
-@@ -99,9 +99,10 @@
- @$(LIBTOOL) $(MINST) --finish $(libsanedir)
- @# Assume the dll name without any versions is last
- @dllend=`../tools/libtool-get-dll-ext libsane-dll.la`; \
-- list="$(ALL_BACKENDS)"; cd $(libsanedir) && for be in $$list; do \
-+ list="$(ALL_BACKENDS)"; origdir=`pwd`; \
-+ cd $(libsanedir) && for be in $$list; do \
- file=libsane-$${be}.$$dllend.$(V_MAJOR); \
-- lib=`grep dlname= libsane-$${be}.la | cut -f2 -d"'"`; \
-+ lib=`grep dlname= "$$origdir"/libsane-$${be}.la | cut -f2 -d"'"`; \
- if test ! -f $${file} -a -n "$${lib}"; then \
- $(LN_S) $${lib} $${file}; \
- fi; \
-@@ -109,10 +110,10 @@
- @# Assume the dll name without any versions is last
- @dllend=`../tools/libtool-get-dll-ext libsane-dll.la`; \
- rm -f $(libdir)/libsane.a $(libdir)/libsane.$$dllend \
-- $(libdir)/libsane.$$dllend.$(V_MAJOR)*; \
-+ $(libdir)/libsane.$$dllend.$(V_MAJOR); \
- $(LN_S) sane/libsane-dll.a $(libdir)/libsane.a; \
- $(LN_S) sane/libsane-dll.$$dllend $(libdir)/libsane.$$dllend ; \
-- cd $(libsanedir) && for n in libsane-dll.$$dllend.$(V_MAJOR)*; do \
-+ cd $(libsanedir) && for n in libsane-dll.$$dllend.$(V_MAJOR); do \
- nn=`echo $$n | sed 's,^libsane-dll,libsane,'`; \
- (cd ..; $(LN_S) sane/$$n $$nn); \
- done || exit 1