summaryrefslogtreecommitdiff
path: root/Build/source/utils/ps2eps
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-03-31 12:17:01 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-03-31 12:17:01 +0000
commit3cc388b38baa1753180bf4a02aade22a6e461638 (patch)
tree2fb531d216318b317c732d72869736eb4e2f5820 /Build/source/utils/ps2eps
parentbb9fb0ff57117f1eef90f381c0b0b767e33058ff (diff)
Makefile fragment for linked perl scripts
git-svn-id: svn://tug.org/texlive/trunk@21901 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/ps2eps')
-rw-r--r--Build/source/utils/ps2eps/ChangeLog4
-rw-r--r--Build/source/utils/ps2eps/Makefile.am43
-rw-r--r--Build/source/utils/ps2eps/Makefile.in30
3 files changed, 28 insertions, 49 deletions
diff --git a/Build/source/utils/ps2eps/ChangeLog b/Build/source/utils/ps2eps/ChangeLog
index 57be815b953..0882f5eb7c2 100644
--- a/Build/source/utils/ps2eps/ChangeLog
+++ b/Build/source/utils/ps2eps/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-31 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * Makefile.am: Use the ../../texk/am/script_links.am fragment.
+
2011-01-09 Peter Breitenlohner <peb@mppmu.mpg.de>
* Makefile.am, configure.ac: Install linked perl script.
diff --git a/Build/source/utils/ps2eps/Makefile.am b/Build/source/utils/ps2eps/Makefile.am
index 55e463af293..7278db32dce 100644
--- a/Build/source/utils/ps2eps/Makefile.am
+++ b/Build/source/utils/ps2eps/Makefile.am
@@ -26,47 +26,16 @@ man1_MANS = \
$(PS2EPS_TREE)/doc/man/man1/ps2eps.1
perl_scripts = ps2eps
-
scriptsdir = texmf/scripts/ps2eps
-texmfdir = ${prefix}/$(scriptsdir)
-nodist_texmf_SCRIPTS = $(PS2EPS_TREE)/bin/ps2eps.pl
+nodist_bin_SCRIPTS =
-if WIN32
-if WIN32_WRAP
-## We treat the WIN32 wrappers as SCRIPTS to avoid automatic build rules
-nodist_bin_SCRIPTS = $(perl_scripts:=.exe)
-runscript = $(srcdir)/../../texk/texlive/w32_wrapper/runscript.exe
-$(nodist_bin_SCRIPTS): $(runscript)
- $(LN_S) $(runscript) $@
-endif WIN32_WRAP
-endif WIN32
+include $(srcdir)/../../texk/am/script_links.am
-install-data-hook:
-if !WIN32
- case "$(bindir)" in \
- */bin) $(MAKE) $(AM_MAKEFLAGS) REL=.. install-links;; \
- */bin/*) $(MAKE) $(AM_MAKEFLAGS) REL=../.. install-links;; \
- *) echo "strange directory '$(bindir)' for linked scripts" >&2; \
- exit 1;; \
- esac
-endif !WIN32
-
-.PHONY: install-links
-install-links:
- @cd $(DESTDIR)$(bindir) && \
- for f in $(perl_scripts); do \
- rm -f $$f; \
- echo "creating link '$$f' -> '$(REL)/$(scriptsdir)/$$f.pl'"; \
- $(LN_S) $(REL)/$(scriptsdir)/$$f.pl $$f || exit 1; \
- done
+texmfdir = ${prefix}/$(scriptsdir)
+nodist_texmf_SCRIPTS = $(PS2EPS_TREE)/bin/ps2eps.pl
-uninstall-hook:
-if !WIN32
- @for f in $(perl_scripts); do \
- echo "rm -f '$(DESTDIR)$(bindir)/$$f'"; \
- rm -f "$(DESTDIR)$(bindir)/$$f"; \
- done
-endif !WIN32
+install-data-hook: install-perl-links
+uninstall-hook: uninstall-perl-links
CLEANFILES = $(nodist_bin_SCRIPTS)
diff --git a/Build/source/utils/ps2eps/Makefile.in b/Build/source/utils/ps2eps/Makefile.in
index 8f4f4e06ed7..5acc1037cbd 100644
--- a/Build/source/utils/ps2eps/Makefile.in
+++ b/Build/source/utils/ps2eps/Makefile.in
@@ -34,15 +34,17 @@ NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
bin_PROGRAMS = bbox$(EXEEXT)
-subdir = .
DIST_COMMON = $(am__configure_deps) $(srcdir)/../../build-aux/depcomp \
$(srcdir)/../../build-aux/install-sh \
- $(srcdir)/../../build-aux/missing $(srcdir)/Makefile.am \
+ $(srcdir)/../../build-aux/missing \
+ $(srcdir)/../../texk/am/script_links.am $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/configure \
../../build-aux/config.guess ../../build-aux/config.sub \
../../build-aux/depcomp ../../build-aux/install-sh \
../../build-aux/ltmain.sh ../../build-aux/missing \
../../build-aux/texinfo.tex ../../build-aux/ylwrap ChangeLog
+@WIN32_TRUE@@WIN32_WRAP_TRUE@am__append_1 = $(perl_wrappers)
+subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../../m4/kpse-warnings.m4 \
$(top_srcdir)/../../m4/kpse-win32.m4 \
@@ -207,10 +209,11 @@ man1_MANS = \
perl_scripts = ps2eps
scriptsdir = texmf/scripts/ps2eps
+nodist_bin_SCRIPTS = $(am__append_1)
+@WIN32_TRUE@@WIN32_WRAP_TRUE@perl_wrappers = $(perl_scripts:=.exe)
+@WIN32_TRUE@@WIN32_WRAP_TRUE@runscript = $(top_srcdir)/../../texk/texlive/w32_wrapper/runscript.exe
texmfdir = ${prefix}/$(scriptsdir)
nodist_texmf_SCRIPTS = $(PS2EPS_TREE)/bin/ps2eps.pl
-@WIN32_TRUE@@WIN32_WRAP_TRUE@nodist_bin_SCRIPTS = $(perl_scripts:=.exe)
-@WIN32_TRUE@@WIN32_WRAP_TRUE@runscript = $(srcdir)/../../texk/texlive/w32_wrapper/runscript.exe
CLEANFILES = $(nodist_bin_SCRIPTS)
all: all-am
@@ -218,7 +221,7 @@ all: all-am
.SUFFIXES: .c .o .obj
am--refresh:
@:
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/../../texk/am/script_links.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
@@ -779,19 +782,19 @@ uninstall-man: uninstall-man1
# in case of an SVN repository
dist-hook:
rm -rf `find $(distdir) -name .svn`
-@WIN32_TRUE@@WIN32_WRAP_TRUE@$(nodist_bin_SCRIPTS): $(runscript)
+.PHONY: install-perl-links make-perl-links uninstall-perl-links
+@WIN32_TRUE@@WIN32_WRAP_TRUE@$(perl_wrappers): $(runscript)
@WIN32_TRUE@@WIN32_WRAP_TRUE@ $(LN_S) $(runscript) $@
-install-data-hook:
+install-perl-links:
@WIN32_FALSE@ case "$(bindir)" in \
-@WIN32_FALSE@ */bin) $(MAKE) $(AM_MAKEFLAGS) REL=.. install-links;; \
-@WIN32_FALSE@ */bin/*) $(MAKE) $(AM_MAKEFLAGS) REL=../.. install-links;; \
+@WIN32_FALSE@ */bin) $(MAKE) $(AM_MAKEFLAGS) REL=.. make-perl-links;; \
+@WIN32_FALSE@ */bin/*) $(MAKE) $(AM_MAKEFLAGS) REL=../.. make-perl-links;; \
@WIN32_FALSE@ *) echo "strange directory '$(bindir)' for linked scripts" >&2; \
@WIN32_FALSE@ exit 1;; \
@WIN32_FALSE@ esac
-.PHONY: install-links
-install-links:
+make-perl-links:
@cd $(DESTDIR)$(bindir) && \
for f in $(perl_scripts); do \
rm -f $$f; \
@@ -799,12 +802,15 @@ install-links:
$(LN_S) $(REL)/$(scriptsdir)/$$f.pl $$f || exit 1; \
done
-uninstall-hook:
+uninstall-perl-links:
@WIN32_FALSE@ @for f in $(perl_scripts); do \
@WIN32_FALSE@ echo "rm -f '$(DESTDIR)$(bindir)/$$f'"; \
@WIN32_FALSE@ rm -f "$(DESTDIR)$(bindir)/$$f"; \
@WIN32_FALSE@ done
+install-data-hook: install-perl-links
+uninstall-hook: uninstall-perl-links
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: