(Solved) Lilypond/Frescobaldi dependencies for Slackbuild.
- globetrotterdk
- Posts: 435
- Joined: 26. Oct 2010, 13:57
- Location: Denmark
(Solved) Lilypond/Frescobaldi dependencies for Slackbuild.
Does anyone of hand know what the dependencies are for the lilypond and frescobaldi slackbuilds? The error messages that I am getting and the documentation on the builds aren't very clear in my opinion. I am using Salix64 MATE 14.1.
Last edited by globetrotterdk on 7. Apr 2016, 13:07, edited 1 time in total.
Military justice is to justice what military music is to music. - Groucho Marx
Re: Lilypond and frescobaldi dependencies for Slackbuild.
Hi Globetrotter,
Lilypond: in order, if doing it manually....slapt-get/slapt-src or spi should build it just fine.
guile1.8
potrace
t1utils
mftrace
fontforge
lilypond
Frescobald:
python-poppler-qt4
lilypond (which would already be built)
Ref: https://slackbuilds.org/result/?search=lilypond&sv=14.1
Lilypond: in order, if doing it manually....slapt-get/slapt-src or spi should build it just fine.
guile1.8
potrace
t1utils
mftrace
fontforge
lilypond
Frescobald:
python-poppler-qt4
lilypond (which would already be built)
Ref: https://slackbuilds.org/result/?search=lilypond&sv=14.1
- globetrotterdk
- Posts: 435
- Joined: 26. Oct 2010, 13:57
- Location: Denmark
Re: Lilypond and frescobaldi dependencies for Slackbuild.
Thanks for the quick reply. All of the dependencies are installed for lilypond, yet I keep getting the following error:ChuangTzu wrote:Hi Globetrotter,
Lilypond: in order, if doing it manually....slapt-get/slapt-src or spi should build it just fine.
guile1.8
potrace
t1utils
mftrace
fontforge
lilypond
Frescobald:
python-poppler-qt4
lilypond (which would already be built)
Ref: https://slackbuilds.org/result/?search=lilypond&sv=14.1
Code: Select all
WARNING: Please consider installing optional programs or files: dblatex bibtex pdflatex pdfetex pdftex etex epsf.tex lh CTAN package (texlive-lang-cyrillic or texlive-texmf-fonts) pngtopnm
ERROR: Please install required programs: mf-nowin mf mfw mfont mpost kpsewhich metapost CTAN package (texlive-metapost)
See INSTALL.txt for more information on how to build LilyPond
fakeroot -- sh lilypond.SlackBuild Failed
Edit----
The python-poppler-qt4 build fails as well.
Code: Select all
patching file setup.py
Traceback (most recent call last):
File "setup.py", line 35, in <module>
import PyQt4.pyqtconfig
ImportError: No module named PyQt4.pyqtconfig
fakeroot -- sh python-poppler-qt4.SlackBuild Failed
Military justice is to justice what military music is to music. - Groucho Marx
Re: Lilypond and frescobaldi dependencies for Slackbuild.
It needs a latex installation. Installing the tetex package should do it. If you need latex to do real work, it should be preferable to install texlive manually.
- globetrotterdk
- Posts: 435
- Joined: 26. Oct 2010, 13:57
- Location: Denmark
Re: Lilypond and frescobaldi dependencies for Slackbuild.
No such luck, unfortunately. I am still getting the same error.gapan wrote:It needs a latex installation. Installing the tetex package should do it. If you need latex to do real work, it should be preferable to install texlive manually.
Military justice is to justice what military music is to music. - Groucho Marx
Re: Lilypond and frescobaldi dependencies for Slackbuild.
Which one? You also need PyQt for the second error.
edit: for latex to become available you need to either source the script in /etc/profile.d, or log out and then back in.
edit: for latex to become available you need to either source the script in /etc/profile.d, or log out and then back in.
- globetrotterdk
- Posts: 435
- Joined: 26. Oct 2010, 13:57
- Location: Denmark
Re: Lilypond and frescobaldi dependencies for Slackbuild.
Thanks. I got Lilypond installed, but have come across a new hurdle with Frescobaldi. Frescobaldi depends on python-poppler-qt4, but when I try to build python-poppler-qt4, I get the message:
Is this because spi isn't applying the included patch to the Slackbuild? If spi can't include patches, that would mean that I have to patch the python-poppler-qt4.SlackBuild manually. with a???
Code: Select all
Traceback (most recent call last):
File "setup.py", line 35, in <module>
import PyQt4.pyqtconfig
ImportError: No module named PyQt4.pyqtconfig
fakeroot -- sh python-poppler-qt4.SlackBuild Failed
Code: Select all
sudo patch -p1 < /home/user/Desktop/python-poppler-qt4-0.16.2-poppler-0.20.0.patch
Military justice is to justice what military music is to music. - Groucho Marx
Re: Lilypond and frescobaldi dependencies for Slackbuild.
No spi does not apply patches, the Slackbuild does that. The reason why your build failed is because you don't have PyQT installed. This is another case where the Slackbuild assumes a full slackware install and therefore has an undeclared dependency on PyQT.globetrotterdk wrote:Is this because spi isn't applying the included patch to the Slackbuild?
I did:
Code: Select all
$ sudo spi -i frescobaldi
“The past was erased, the erasure was forgotten, the lie became the truth.”
― George Orwell, 1984
― George Orwell, 1984
- globetrotterdk
- Posts: 435
- Joined: 26. Oct 2010, 13:57
- Location: Denmark
Re: Lilypond and frescobaldi dependencies for Slackbuild.
That seems to have sorted the problem out. Many thanks.laprjns wrote:No spi does not apply patches, the Slackbuild does that. The reason why your build failed is because you don't have PyQT installed. This is another case where the Slackbuild assumes a full slackware install and therefore has an undeclared dependency on PyQT.globetrotterdk wrote:Is this because spi isn't applying the included patch to the Slackbuild?
I did:and it build and installed all packages including lilypond without problems, but I already had PyQT installed.Code: Select all
$ sudo spi -i frescobaldi
Military justice is to justice what military music is to music. - Groucho Marx