diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-23 07:38:46 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-23 07:38:46 +0000 |
commit | 9e6c3165ed4aad17242fe148c12e16ee4392ca92 (patch) | |
tree | 9d2ac736486792554474c445d238485a5f708bd2 /Build/source/libs | |
parent | b018a7cc5174a709b1fcf7256f1a6d527873a968 (diff) |
exclude .svn from dist tarball
git-svn-id: svn://tug.org/texlive/trunk@12495 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs')
-rw-r--r-- | Build/source/libs/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/freetype/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/freetype2/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/gd/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/graphite/Makefile.am | 6 | ||||
-rw-r--r-- | Build/source/libs/libpng/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/obsdcompat/Makefile.am | 3 | ||||
-rw-r--r-- | Build/source/libs/t1lib/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/teckit/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/xpdf/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/zlib/Makefile.am | 4 |
11 files changed, 41 insertions, 4 deletions
diff --git a/Build/source/libs/Makefile.am b/Build/source/libs/Makefile.am index 3364379ab7e..1f4bdb8d23a 100644 --- a/Build/source/libs/Makefile.am +++ b/Build/source/libs/Makefile.am @@ -6,6 +6,10 @@ DIST_SUBDIRS = dummy $(DIST_SUBLIBS) EXTRA_DIST = README.orig +## just in case a subdirectory has added directories +dist-hook: + rm -rf `find $(distdir) -name .svn` + SUBLIBS_AUX = sublibsdir-configure sublibsdir-conf.args noinst_DATA = $(SUBLIBS_AUX) diff --git a/Build/source/libs/freetype/Makefile.am b/Build/source/libs/freetype/Makefile.am index 77991b7afda..50cb2b7e83f 100644 --- a/Build/source/libs/freetype/Makefile.am +++ b/Build/source/libs/freetype/Makefile.am @@ -14,6 +14,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## DISTFILES contains a directory and files in that directory. EXTRA_DIST = $(FREETYPE_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(FREETYPE_TREE) -name .svn` + if build noinst_DATA = libttf.a diff --git a/Build/source/libs/freetype2/Makefile.am b/Build/source/libs/freetype2/Makefile.am index 5754cb815fc..39c931bb58b 100644 --- a/Build/source/libs/freetype2/Makefile.am +++ b/Build/source/libs/freetype2/Makefile.am @@ -14,6 +14,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## DISTFILES contains a directory and files in that directory. EXTRA_DIST = $(FREETYPE_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(FREETYPE_TREE) -name .svn` + if build noinst_DATA = libfreetype.a diff --git a/Build/source/libs/gd/Makefile.am b/Build/source/libs/gd/Makefile.am index 9d4b46e0c15..8c816f6eeaf 100644 --- a/Build/source/libs/gd/Makefile.am +++ b/Build/source/libs/gd/Makefile.am @@ -15,6 +15,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## Thus nodist_* for all files in $(GD_TREE). EXTRA_DIST = $(GD_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(GD_TREE) -name .svn` + INCLUDES = -I$(top_srcdir)/$(GD_TREE) $(ZLIB_INCLUDES) $(LIBPNG_INCLUDES) if build diff --git a/Build/source/libs/graphite/Makefile.am b/Build/source/libs/graphite/Makefile.am index 68b7f1bccb8..77b52dc6d1c 100644 --- a/Build/source/libs/graphite/Makefile.am +++ b/Build/source/libs/graphite/Makefile.am @@ -47,6 +47,10 @@ EXTRA_DIST = \ test \ uninstalled-top.pc.in +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(ZLIB_TREE) -name .svn` + libgraphite_a_SOURCES = \ src/font/FileFont.cpp \ src/font/Font.cpp \ @@ -98,8 +102,6 @@ libgraphite_a_SOURCES = \ src/segment/TransductionLog.cpp \ src/segment/resource.h -## included from - ## Not used ## EXTRA_DIST += \ diff --git a/Build/source/libs/libpng/Makefile.am b/Build/source/libs/libpng/Makefile.am index c12199fd5ed..09b99a10429 100644 --- a/Build/source/libs/libpng/Makefile.am +++ b/Build/source/libs/libpng/Makefile.am @@ -15,6 +15,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## Thus nodist_* for all files in $(LIBPNG_TREE). EXTRA_DIST = $(LIBPNG_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(LIBPNG_TREE) -name .svn` + INCLUDES = -I$(top_srcdir)/$(LIBPNG_TREE) $(ZLIB_INCLUDES) AM_CPPFLAGS = $(LIBPNG_DEFINES) diff --git a/Build/source/libs/obsdcompat/Makefile.am b/Build/source/libs/obsdcompat/Makefile.am index 00509407a1d..42ee5c1fd0a 100644 --- a/Build/source/libs/obsdcompat/Makefile.am +++ b/Build/source/libs/obsdcompat/Makefile.am @@ -22,8 +22,7 @@ libopenbsd_compat_a_SOURCES = \ includes.h \ openbsd-compat.h -## ###### ## Eventually delete these files - +## EXTRA_DIST = libobsd-compat.ac diff --git a/Build/source/libs/t1lib/Makefile.am b/Build/source/libs/t1lib/Makefile.am index 5e462965123..5a644c78636 100644 --- a/Build/source/libs/t1lib/Makefile.am +++ b/Build/source/libs/t1lib/Makefile.am @@ -15,6 +15,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## Thus nodist_* for all files in $(T1LIB_TREE). EXTRA_DIST = $(T1LIB_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(T1LIB_TREE) -name .svn` + INCLUDES = -Ilib -I$(top_srcdir)/$(T1LIB_TREE) AM_CPPFLAGS = $(T1LIB_DEFINES) AM_CPPFLAGS += -DT1LIB_IDENT=\"@T1LIB_VERSIONSTRING@\" diff --git a/Build/source/libs/teckit/Makefile.am b/Build/source/libs/teckit/Makefile.am index d8fe5e6d2e9..d6db6f345e2 100644 --- a/Build/source/libs/teckit/Makefile.am +++ b/Build/source/libs/teckit/Makefile.am @@ -76,6 +76,10 @@ EXTRA_DIST += \ source/version_defs.h \ test +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir) -name .svn` + ## Eventually delete these files ## EXTRA_DIST += Makefile.am.orig configure.ac.orig diff --git a/Build/source/libs/xpdf/Makefile.am b/Build/source/libs/xpdf/Makefile.am index 3d33245a773..08ddee8abee 100644 --- a/Build/source/libs/xpdf/Makefile.am +++ b/Build/source/libs/xpdf/Makefile.am @@ -26,6 +26,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## Thus nodist_* for all files in $(XPDF_TREE). EXTRA_DIST = $(XPDF_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(XPDF_TREE) -name .svn` + SUBDIRS = goo fofi xpdf GOO_SRC = $(top_srcdir)/$(XPDF_TREE)/goo diff --git a/Build/source/libs/zlib/Makefile.am b/Build/source/libs/zlib/Makefile.am index da85df6b5ed..5d126bb4135 100644 --- a/Build/source/libs/zlib/Makefile.am +++ b/Build/source/libs/zlib/Makefile.am @@ -15,6 +15,10 @@ ACLOCAL_AMFLAGS = -I ../../m4 ## Thus nodist_* for all files in $(ZLIB_TREE). EXTRA_DIST = $(ZLIB_TREE) +## in case of an SVN repository +dist-hook: + rm -rf `find $(distdir)/$(ZLIB_TREE) -name .svn` + INCLUDES = -I$(top_srcdir)/$(ZLIB_TREE) AM_CPPFLAGS = $(ZLIB_DEFINES) |