I tried to replace the temporary labels TMP1, TMP2 and TMP3 in an .eps file made with ChemDraw v18 on Mac OSX Mojave using the chemnum package, so to get an automatic numbering of the compounds, but this did not work for me.
I tried different fonts for the label in the .eps file, or other options for auto-pst-pdf with no result.
The problem originally occurred on TexLive 2014 for Mac remains with Mac OSX 10.14 and TexLive 2019, compilation with pdflatex -synctex=1 -interaction=nonstopmode --shell-escape %.tex(I use TexStudio).
For the following MWE with the following eps file.
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage[crop=off,runs=2]{auto-pst-pdf}
\usepackage{chemnum}
\usepackage{chemstyle}
\begin{document}
\begin{scheme}
\replacecmpd[tag=TMP1]{cmpd:nucleophile1}
\replacecmpd[tag=TMP2]{cmpd:nucleophile2}
\replacecmpd[tag=TMP3]{cmpd:nucleophile3}
\includegraphics[scale=0.8]{test_cmpd_numbering.eps}
\caption[test]{A test to make the numbering work}
\end{scheme}
\end{document}
The picture is inserted properly and the file test_cmpd_numbering-pics.pdf generated (that's a progress from previously), but the TMP1, TMP2 etc. labels are not replaced. Here is the log file. It has got the error 'non-PDF special ignored!' which is often related to PdfLaTex difficulties on MacOSX.
Does anyone know why this code could make problems on Mac?

\usepackage{epstopdf}(with the package it doesn't work) and compile with pdflatex (shell-escape enabled). The only tag that isn't replaced is inthen TMP1 in THF, -30\260but this can't work:psfragneeds “a single word, composed of unaccented letters and numbers”. (then TMP1 in THF, -30\260is not a single word) – cgnieder Oct 07 '14 at 22:41\usepackage{epstopdf}, the aziridineopening-converted-to.pdf file is not created, hence an empty white space is included instead of the picture. Curiously I get no warning or error message. I tested in a terminal if epstopdf works for himself - it seems fine and if I start it manually in the terminal, the ...-converted-to.pdf file is created correctly. – Simon N. Oct 08 '14 at 11:12auto-pst-pdfshould also create a...-pics.pdf. (provided you're compiling with shell-escape enabled) – cgnieder Oct 09 '14 at 07:01\usepackage{eps-to-pdf}from the top MWE and compile with--shell-escape, the...-pics.pdffile is created, but it has no content. If I open this...-pics.pdf-file with a visualization program such as Preview or AdobeReader, I see only a small white quadrangle. And the aziridineopening-converted-to.pdf file is not created. Here the log file – Simon N. Oct 09 '14 at 10:03Preview: Fontsize 12pt Preview: PDFoutput 1. Could it be that somehow, the Mac Preview-Programm, which is often used to convert .eps to .pdf, interferes with the process? Or am I totally misleaded? – Simon N. Oct 09 '14 at 10:29