-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Boomaga window doesn't display document #53
Comments
I have the same problem, using Mint 17.3. Boomaga changed since 20-6-2017. Before that date it worked fine for years. |
Same problem here. Have been searching for a solution for days on end. But to no avail. I already thought it must've been a bug that's been introduced in an update. This article seems to confirm that... |
Thank you for your answer I've spend most of my evening to try and find version 0.9.0 but have been unable to find it. the only versions I can get my hands on are 0.9.1 (from the boomaga repo) and 0.7.1 from the ubuntu repo. Both of them give the same problem... Can you please tell me where I can find version 0.9.0? |
I finally got my hands on the .deb packet for 0.9.0. However, it requires libpoppler19 which is unavailable on ubuntu 16.04 How do I proceed? |
Maybe it's nothing, but I noticed that I was working with an older version (0.7.1 build3) of Boomaga which is in the Ubuntu PPA's. So the problem is probably not in the Boomaga packet. I'm starting to think the problem is with an updated file from Ubuntu. However, I haven't a clue how to recover which file causes the problem... |
I don't think that related with this commit. I think prooblem is new poppler version. They are not the first time break compatibility. |
But if I change just one line: /usr/lib/x86_64-linux-gnu/boomaga/boomagamerger: symbol lookup error: /usr/lib/x86_64-linux-gnu/boomaga/boomagamerger: undefined symbol: _ZN6PDFDoc15markPageObjectsEP4DictP4XRefS3_j |
The program was working, not because you changed the string, but because they rebuild the program from scratch. For test you can run following comand
@ALL
As you can see signature of the function was changed. So boomagamerger can't find the function. As quick fix. Maintainer can rebuild package with new libpoppler version it fix the problem. But it can cause problems with older versions of the library. Because 2 libraries with different signatures have same version, now I don't know how to solve it correctly. |
I have tried the solution @stormy-gh gave. Took some time to find the sourcefile that needed changing but I found it, made the change and compiled the package. Ofcourse I still had to install some additional packages, but after doing this everything installed smoothly and Boomaga is working again. Thanks everyone for all your input. |
Yes, you are right. I have made deb from sources with no modification and it's working. So, quick fix for Ubuntu owners: |
Done, thnx. Only had some problems with the signing of the package (and my packetmanager won't let me import the darn thing). But after creating the package without signing it worked like a charm (only it won't show up in my packet manager). |
I have the same problem, but the quick fix from stormy-gh doesn't fix it. For
Any help? |
I'm having the same issue with the blank GUI, and print failures from Boomaga. As others have observed it was working before, but I did a fresh install of Linux Mint 18.1 and now have the problem. Attempting to build the package on Linux Mint 18.1 as stormy-gh suggested. It looks to me like I'm getting the same error(s) as Anynom, at least as far as the final build failure is concerned. So I got the source code and am trying to build, but have some issues: First near the start of the build I get: And from there errors where Q_WS_WIN is being referenced in source files. Note the build doesn't stop when these errors are hit. But earlier in the build the build process reports that Q_WS_WIN is found. The build gets to the following point and finally does stop with exit status 2. dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DLIB_SUFFIX=/x86_64-linux-gnu returned exit code 1
|
OK, I was able to figure out the build issue. I installed Libpoppler-private-dev from the repository. For good measure I also installed libpoppler-qt4-dev and some other libpoppler related -dev libraries. After doing that I was able to build the .deb package and install it. And now boomaga shows the file to be printed. And it prints successfully. I figured this out by attempting to build boomaga as described in INSTALL.txt and that showed the error about the missing "private" headers for libpoppler.. Hopefully this will help others. |
Thank you, problem is solved. |
I got this: What is missing or wrong? |
It looks like you are missing the build-essential package, so start with that. Then make sure that you have the other dependencies installed, and don't miss the libpoppler-private-dev package as well. NOTE: You might want to try building boomaga following the instructions in INSTALL.txt first to sort out things that might be missing for just building boomaga and then try building the package once any issues there are sorted out. I tried building the package first and hit problems that didn't leap out during the package build. I tracked down the missing private headers by going back and building boomaga following INSTALL.txt. Then the package built fine. |
O.K. burtbick. I installed the build-eesentials but now I got other errors. xyz@general /media/ejf/Vrij-31GB/boomaga-0.9.1 $ dpkg-buildpackage -rfakeroot In fakeroot line 178 we read: What's next? |
Have you tried to build boomaga following the instructions in the INSTALL.txt file? I would try that first before attempting to generate the .deb package. If there are any errors just trying to build the application by itself then the build of the .deb package will fail for sure. Having said that it looks like you are getting an Access denied error on the debian/rules. Did you extract your boomaga source code to a directory that requires root access, or access by a different user? If you extracted to a directory under your user then do an ls -l to check the ownership of all the files to make sure that they are all owned by your user. In any case you need to track down why you are getting Access denied when the build tries to access debian/rules. Worst case I suppose you could do sudo dpkg-buildpackage -rfakeroot but you shouldn't need to, so it would be better to track down the source of the problem. I would first try building boomaga itself following the instructions in INSTALL.txt. That will make sure you have all the requirements for building satisfied. After you have a clean build of boomaga then it should be fairly easy to build the .deb package. And by making sure that the application itself builds cleanly you will eliminate potential confusing when trying to build the package. Here's a summary from INSTALL.txt:
|
Thanks Burtbic, |
Great... Glad I could help. While it sometimes seems a bit daunting to build a new application (and package) it is mostly making sure that all the required tools and libraries are installed. After that it is rare that there is an issue building from source, not that it can't happen of course. If you have any other questions in the future don't hesitate to post and someone can help. |
For Ubuntu guys Hi guys, I made the packages for different versions of Ubuntu and published they on ppa. I forced versions of libpoppler-dev. I hope this will solve our problems. Please leave feedback - is in your distributions the program works or not. For Mint guys Kick your maintainers, about to upgrade the package and specify depends like:
Versions for different libpopplerXX can be found in .dsc files on my ppa |
Confirmed PPA Version on Ubuntu 16.10 fixes the issue. Thank you |
I wrote my own PDF parser instead of poppler-private. Please test the drop_poppler branch. |
Thank you... I've downloaded and installed your package and it seems to work. Can't actually print at this moment without waking people up. Will test printing later... However, dependencies still show that "libpoppler-cpp0" is needed. Is this your own library? Or the linux stock library? |
In short More detail
These API is stable but limited. In fact, they only allow to render a PDF page. These APIs are used by many programs, so compatibility with them is tested by maintainers. This part of the poppler did not cause any problems. But public poppler API don't allow to change the structure of the PDF document, what is required in my program. For this I used the so-called low-level poppler API (in Ubuntu this API is available in package libpoppler-private-dev so I call this API poppler-private). It's status is not exactly defined. On the one hand, on the website there's nothing says that I can't use it, and header files are available. On the other hand there is no documentation on it, and the API is changing in minor versions. Non stable API was a problem. Now I don't use poppler-private for manipulation with PDF documents, I use my own parser. |
That's clear, thanks... |
Release 1.0 don't use poppler |
After printing to boomaga I get an "empty" boomaga window since two weeks for all documents. No document is displayed, only the gray background. Nevertheless the Job is available and I can click on "Next sheet" or "Previous sheet". After Printing to a real printer from Boomaga, nothing will be printed. What's wrong with this installation? How can I debug this problem?
The text was updated successfully, but these errors were encountered: