* [gentoo-user] Master PDF Editor - version 4, without watermark
@ 2021-09-25 7:06 thelma
2021-09-25 7:45 ` Marco Rebhan
0 siblings, 1 reply; 10+ messages in thread
From: thelma @ 2021-09-25 7:06 UTC (permalink / raw
To: Gentoo mailing list
Any idea where I can find "Master PDF Editor - version 4" ebuild?
Ver. 4 is without watermark.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 7:06 [gentoo-user] Master PDF Editor - version 4, without watermark thelma
@ 2021-09-25 7:45 ` Marco Rebhan
2021-09-25 8:59 ` Charlotte Delenk
0 siblings, 1 reply; 10+ messages in thread
From: Marco Rebhan @ 2021-09-25 7:45 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 647 bytes --]
On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
wrote:
> Any idea where I can find "Master PDF Editor - version 4" ebuild?
> Ver. 4 is without watermark.
You can find it in the git repository history:
https://gitweb.gentoo.org/repo/gentoo.git/commit/?
id=56e7e82af65de580969758794453066a29ecbf85
The command I used to find that was git log 'app-text/master-pdf-editor/
master-pdf-editor-4*' in case you need to do that in the future.
Due to the commit message, I don't think you'll have much luck unless
you have the source files:
> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
> available.
-Marco
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 7:45 ` Marco Rebhan
@ 2021-09-25 8:59 ` Charlotte Delenk
2021-09-25 17:33 ` thelma
2021-09-25 21:39 ` [gentoo-user][SOLVED] " thelma
0 siblings, 2 replies; 10+ messages in thread
From: Charlotte Delenk @ 2021-09-25 8:59 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1.1.1: Type: text/plain, Size: 1098 bytes --]
On 9/25/21 09:45, Marco Rebhan wrote:
> On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
> wrote:
>> Any idea where I can find "Master PDF Editor - version 4" ebuild?
>> Ver. 4 is without watermark.
> You can find it in the git repository history:
> https://gitweb.gentoo.org/repo/gentoo.git/commit/?
> id=56e7e82af65de580969758794453066a29ecbf85
>
> The command I used to find that was git log 'app-text/master-pdf-editor/
> master-pdf-editor-4*' in case you need to do that in the future.
>
> Due to the commit message, I don't think you'll have much luck unless
> you have the source files:
>
>> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
>> available.
> -Marco
It appears that the binaries for a slightly newer version are still
available on the website, just under a different name:
http://code-industry.net/public/master-pdf-editor-4.3.89_qt5.amd64.tar.gz
I attached an ebuild that might work, haven't tested it.
--
Charlotte
https://keybase.io/darkkirb • GPG Key 3CEF5DDA915AECB0 • https://darkkirb.de
[-- Attachment #1.1.2: master-pdf-editor-4.3.89.ebuild --]
[-- Type: text/plain, Size: 1432 bytes --]
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit xdg-utils desktop
DESCRIPTION="A complete solution for viewing and editing PDF files"
HOMEPAGE="https://code-industry.net/free-pdf-editor/"
SRC_URI="http://code-industry.net/public/${P}_qt5.amd64.tar.gz"
LICENSE="master-pdf-editor"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror"
COMMON_DEPEND="
app-arch/bzip2
dev-libs/double-conversion
dev-libs/glib
dev-libs/icu
dev-libs/openssl
media-gfx/graphite2
media-gfx/sane-backends
media-libs/freetype
media-libs/harfbuzz
media-libs/libjpeg-turbo
media-libs/libpng
media-libs/tiff
x11-libs/libX11
x11-libs/libXau
x11-libs/libxcb
x11-libs/libXdmcp
x11-libs/libXext
>=dev-qt/qtsvg-5.4:5
>=dev-qt/qtnetwork-5.4:5
>=dev-qt/qtgui-5.4:5
>=dev-qt/qtprintsupport-5.4:5
"
RDEPEND="${COMMON_DEPEND}"
S="${WORKDIR}/${PN}-${PV%%.*}"
src_install() {
insinto /opt/${PN}
doins -r fonts lang stamps templates masterpdfeditor4.png
exeinto /opt/${PN}
doexe masterpdfeditor4
dosym ../${PN}/masterpdfeditor4 /opt/bin/masterpdfeditor4
make_desktop_entry "masterpdfeditor4 %f" \
"Master PDF Editor ${PV}" /opt/${PN}/masterpdfeditor4.png \
"Office;Graphics;Viewer" \
"MimeType=application/pdf;application/x-bzpdf;application/x-gzpdf;\nTerminal=false"
}
pkg_postinst() {
xdg_desktop_database_update
}
pkg_postrm() {
xdg_desktop_database_update
}
[-- Attachment #1.1.3: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 4319 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 8:59 ` Charlotte Delenk
@ 2021-09-25 17:33 ` thelma
2021-09-25 17:40 ` Neil Bothwick
2021-09-25 17:44 ` Dale
2021-09-25 21:39 ` [gentoo-user][SOLVED] " thelma
1 sibling, 2 replies; 10+ messages in thread
From: thelma @ 2021-09-25 17:33 UTC (permalink / raw
To: gentoo-user
On 9/25/21 2:59 AM, Charlotte Delenk wrote:
> On 9/25/21 09:45, Marco Rebhan wrote:
>> On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
>> wrote:
>>> Any idea where I can find "Master PDF Editor - version 4" ebuild?
>>> Ver. 4 is without watermark.
>> You can find it in the git repository history:
>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?
>> id=56e7e82af65de580969758794453066a29ecbf85
>>
>> The command I used to find that was git log 'app-text/master-pdf-editor/
>> master-pdf-editor-4*' in case you need to do that in the future.
>>
>> Due to the commit message, I don't think you'll have much luck unless
>> you have the source files:
>>
>>> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
>>> available.
>> -Marco
>
>
> It appears that the binaries for a slightly newer version are still available on the website, just under a different name:
>
> http://code-industry.net/public/master-pdf-editor-4.3.89_qt5.amd64.tar.gz
>
> I attached an ebuild that might work, haven't tested it.
I'm trying to test. I add to:
package.accept_keywords
=master-pdf-editor-4.3.89 ~amd64
emerge -avq =master-pdf-editor-4.3.89
--- Invalid atom in /etc/portage/package.accept_keywords: =master-pdf-editor-4.3.89
* Last emerge --sync was 40d 23h 52m 30s ago.
!!! All ebuilds that could satisfy "=master-pdf-editor-4.3.89" have been masked.
!!! One of the following masked packages is required to complete your request:
- app-text/master-pdf-editor-4.3.89::Local (masked by: ~amd64 keyword)
Why is still blocking it?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 17:33 ` thelma
@ 2021-09-25 17:40 ` Neil Bothwick
2021-09-25 17:51 ` thelma
2021-09-25 17:44 ` Dale
1 sibling, 1 reply; 10+ messages in thread
From: Neil Bothwick @ 2021-09-25 17:40 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 506 bytes --]
On Sat, 25 Sep 2021 11:33:05 -0600, thelma@sys-concept.com wrote:
> I'm trying to test. I add to:
> package.accept_keywords
> =master-pdf-editor-4.3.89 ~amd64
>
> emerge -avq =master-pdf-editor-4.3.89
> --- Invalid atom in /etc/portage/package.accept_keywords:
> =master-pdf-editor-4.3.89
> * Last emerge --sync was 40d 23h 52m 30s ago.
You need the category, app-text, in package.accept_keywords
--
Neil Bothwick
WinErr 00F: Unexplained error - Please tell us how this happened
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 17:33 ` thelma
2021-09-25 17:40 ` Neil Bothwick
@ 2021-09-25 17:44 ` Dale
2021-09-25 17:54 ` Charlotte Delenk
1 sibling, 1 reply; 10+ messages in thread
From: Dale @ 2021-09-25 17:44 UTC (permalink / raw
To: Gentoo User
thelma@sys-concept.com wrote:
> On 9/25/21 2:59 AM, Charlotte Delenk wrote:
>> On 9/25/21 09:45, Marco Rebhan wrote:
>>> On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
>>> wrote:
>>>> Any idea where I can find "Master PDF Editor - version 4" ebuild?
>>>> Ver. 4 is without watermark.
>>> You can find it in the git repository history:
>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?
>>> id=56e7e82af65de580969758794453066a29ecbf85
>>>
>>> The command I used to find that was git log 'app-text/master-pdf-editor/
>>> master-pdf-editor-4*' in case you need to do that in the future.
>>>
>>> Due to the commit message, I don't think you'll have much luck unless
>>> you have the source files:
>>>
>>>> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
>>>> available.
>>> -Marco
>>
>> It appears that the binaries for a slightly newer version are still available on the website, just under a different name:
>>
>> http://code-industry.net/public/master-pdf-editor-4.3.89_qt5.amd64.tar.gz
>>
>> I attached an ebuild that might work, haven't tested it.
> I'm trying to test. I add to:
> package.accept_keywords
> =master-pdf-editor-4.3.89 ~amd64
>
> emerge -avq =master-pdf-editor-4.3.89
> --- Invalid atom in /etc/portage/package.accept_keywords: =master-pdf-editor-4.3.89
> * Last emerge --sync was 40d 23h 52m 30s ago.
>
> !!! All ebuilds that could satisfy "=master-pdf-editor-4.3.89" have been masked.
> !!! One of the following masked packages is required to complete your request:
> - app-text/master-pdf-editor-4.3.89::Local (masked by: ~amd64 keyword)
>
> Why is still blocking it?
>
>
>
It looks like it wants you to include the category as well in
package.keywords. Like this:
=app-text/master-pdf-editor-4.3.89
Just a FYI. I'm showing this here for that package.
app-text/master-pdf-editor-5.7.90 I don't even see a version 4 at all.
If what you are installing now doesn't work, you may want to sync and
try version 5. Just a thought.
Dale
:-) :-)
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 17:40 ` Neil Bothwick
@ 2021-09-25 17:51 ` thelma
0 siblings, 0 replies; 10+ messages in thread
From: thelma @ 2021-09-25 17:51 UTC (permalink / raw
To: gentoo-user
On 9/25/21 11:40 AM, Neil Bothwick wrote:
> On Sat, 25 Sep 2021 11:33:05 -0600, thelma@sys-concept.com wrote:
>
>> I'm trying to test. I add to:
>> package.accept_keywords
>> =master-pdf-editor-4.3.89 ~amd64
>>
>> emerge -avq =master-pdf-editor-4.3.89
>> --- Invalid atom in /etc/portage/package.accept_keywords:
>> =master-pdf-editor-4.3.89
>> * Last emerge --sync was 40d 23h 52m 30s ago.
>
> You need the category, app-text, in package.accept_keywords
Yes, yes small mistake; it worked.
Thanks Neil!
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 17:44 ` Dale
@ 2021-09-25 17:54 ` Charlotte Delenk
2021-09-25 19:40 ` Dale
0 siblings, 1 reply; 10+ messages in thread
From: Charlotte Delenk @ 2021-09-25 17:54 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1.1.1: Type: text/plain, Size: 2398 bytes --]
On 9/25/21 19:44, Dale wrote:
> thelma@sys-concept.com wrote:
>> On 9/25/21 2:59 AM, Charlotte Delenk wrote:
>>> On 9/25/21 09:45, Marco Rebhan wrote:
>>>> On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
>>>> wrote:
>>>>> Any idea where I can find "Master PDF Editor - version 4" ebuild?
>>>>> Ver. 4 is without watermark.
>>>> You can find it in the git repository history:
>>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?
>>>> id=56e7e82af65de580969758794453066a29ecbf85
>>>>
>>>> The command I used to find that was git log 'app-text/master-pdf-editor/
>>>> master-pdf-editor-4*' in case you need to do that in the future.
>>>>
>>>> Due to the commit message, I don't think you'll have much luck unless
>>>> you have the source files:
>>>>
>>>>> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
>>>>> available.
>>>> -Marco
>>>
>>> It appears that the binaries for a slightly newer version are still available on the website, just under a different name:
>>>
>>> http://code-industry.net/public/master-pdf-editor-4.3.89_qt5.amd64.tar.gz
>>>
>>> I attached an ebuild that might work, haven't tested it.
>> I'm trying to test. I add to:
>> package.accept_keywords
>> =master-pdf-editor-4.3.89 ~amd64
>>
>> emerge -avq =master-pdf-editor-4.3.89
>> --- Invalid atom in /etc/portage/package.accept_keywords: =master-pdf-editor-4.3.89
>> * Last emerge --sync was 40d 23h 52m 30s ago.
>>
>> !!! All ebuilds that could satisfy "=master-pdf-editor-4.3.89" have been masked.
>> !!! One of the following masked packages is required to complete your request:
>> - app-text/master-pdf-editor-4.3.89::Local (masked by: ~amd64 keyword)
>>
>> Why is still blocking it?
>>
>>
>>
>
>
> It looks like it wants you to include the category as well in
> package.keywords. Like this:
>
> =app-text/master-pdf-editor-4.3.89
>
> Just a FYI. I'm showing this here for that package.
> app-text/master-pdf-editor-5.7.90 I don't even see a version 4 at all.
> If what you are installing now doesn't work, you may want to sync and
> try version 5. Just a thought.
>
> Dale
>
> :-) :-)
>
Thelma was looking for version 4 in particular, since version 5
apparently added unremovable watermarks
--
Charlotte
https://keybase.io/darkkirb • GPG Key 3CEF5DDA915AECB0 • https://darkkirb.de
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 4319 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user] Master PDF Editor - version 4, without watermark
2021-09-25 17:54 ` Charlotte Delenk
@ 2021-09-25 19:40 ` Dale
0 siblings, 0 replies; 10+ messages in thread
From: Dale @ 2021-09-25 19:40 UTC (permalink / raw
To: gentoo-user
Charlotte Delenk wrote:
> On 9/25/21 19:44, Dale wrote:
>> thelma@sys-concept.com wrote:
>>> On 9/25/21 2:59 AM, Charlotte Delenk wrote:
>>>> On 9/25/21 09:45, Marco Rebhan wrote:
>>>>> On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
>>>>> wrote:
>>>>>> Any idea where I can find "Master PDF Editor - version 4" ebuild?
>>>>>> Ver. 4 is without watermark.
>>>>> You can find it in the git repository history:
>>>>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?
>>>>> id=56e7e82af65de580969758794453066a29ecbf85
>>>>>
>>>>> The command I used to find that was git log
>>>>> 'app-text/master-pdf-editor/
>>>>> master-pdf-editor-4*' in case you need to do that in the future.
>>>>>
>>>>> Due to the commit message, I don't think you'll have much luck unless
>>>>> you have the source files:
>>>>>
>>>>>> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
>>>>>> available.
>>>>> -Marco
>>>>
>>>> It appears that the binaries for a slightly newer version are still
>>>> available on the website, just under a different name:
>>>>
>>>> http://code-industry.net/public/master-pdf-editor-4.3.89_qt5.amd64.tar.gz
>>>>
>>>>
>>>> I attached an ebuild that might work, haven't tested it.
>>> I'm trying to test. I add to:
>>> package.accept_keywords
>>> =master-pdf-editor-4.3.89 ~amd64
>>>
>>> emerge -avq =master-pdf-editor-4.3.89
>>> --- Invalid atom in /etc/portage/package.accept_keywords:
>>> =master-pdf-editor-4.3.89
>>> * Last emerge --sync was 40d 23h 52m 30s ago.
>>>
>>> !!! All ebuilds that could satisfy "=master-pdf-editor-4.3.89" have
>>> been masked.
>>> !!! One of the following masked packages is required to complete
>>> your request:
>>> - app-text/master-pdf-editor-4.3.89::Local (masked by: ~amd64 keyword)
>>>
>>> Why is still blocking it?
>>>
>>>
>>
>>
>> It looks like it wants you to include the category as well in
>> package.keywords. Like this:
>>
>> =app-text/master-pdf-editor-4.3.89
>>
>> Just a FYI. I'm showing this here for that package.
>> app-text/master-pdf-editor-5.7.90 I don't even see a version 4 at all.
>> If what you are installing now doesn't work, you may want to sync and
>> try version 5. Just a thought.
>>
>> Dale
>>
>> :-) :-)
>>
>
> Thelma was looking for version 4 in particular, since version 5
> apparently added unremovable watermarks
>
Oh. That explains that then. ROFL
Dale
:-) :-)
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [gentoo-user][SOLVED] Master PDF Editor - version 4, without watermark
2021-09-25 8:59 ` Charlotte Delenk
2021-09-25 17:33 ` thelma
@ 2021-09-25 21:39 ` thelma
1 sibling, 0 replies; 10+ messages in thread
From: thelma @ 2021-09-25 21:39 UTC (permalink / raw
To: gentoo-user
On 9/25/21 2:59 AM, Charlotte Delenk wrote:
> On 9/25/21 09:45, Marco Rebhan wrote:
>> On Saturday, 25 September 2021 09:06:20 CEST thelma@sys-concept.com
>> wrote:
>>> Any idea where I can find "Master PDF Editor - version 4" ebuild?
>>> Ver. 4 is without watermark.
>> You can find it in the git repository history:
>> https://gitweb.gentoo.org/repo/gentoo.git/commit/?
>> id=56e7e82af65de580969758794453066a29ecbf85
>>
>> The command I used to find that was git log 'app-text/master-pdf-editor/
>> master-pdf-editor-4*' in case you need to do that in the future.
>>
>> Due to the commit message, I don't think you'll have much luck unless
>> you have the source files:
>>
>>> app-text/master-pdf-editor: removed 4.3.82 as sources are no longer
>>> available.
>> -Marco
>
>
> It appears that the binaries for a slightly newer version are still available on the website, just under a different name:
>
> http://code-industry.net/public/master-pdf-editor-4.3.89_qt5.amd64.tar.gz
>
> I attached an ebuild that might work, haven't tested it.
Thank you.
Confirm the enclosed master-pdf-editor-4.3.89.ebuild worked perfectly.
The ver. 4.3.89 can not read gif images (signature) but this is a minor issue. Converting gif to bmp solves the problem.
And there is no watermark.
Thank you!
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-09-25 21:39 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-25 7:06 [gentoo-user] Master PDF Editor - version 4, without watermark thelma
2021-09-25 7:45 ` Marco Rebhan
2021-09-25 8:59 ` Charlotte Delenk
2021-09-25 17:33 ` thelma
2021-09-25 17:40 ` Neil Bothwick
2021-09-25 17:51 ` thelma
2021-09-25 17:44 ` Dale
2021-09-25 17:54 ` Charlotte Delenk
2021-09-25 19:40 ` Dale
2021-09-25 21:39 ` [gentoo-user][SOLVED] " thelma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox