Search Criteria
Package Details: ted 2.23-11
Package Actions
Git Clone URL: | https://aur.archlinux.org/ted.git (read-only, click to copy) |
---|---|
Package Base: | ted |
Description: | Lightweight RTF text processor |
Upstream URL: | https://www.nllgg.nl/Ted/ |
Licenses: | GPL |
Submitter: | sergej |
Maintainer: | willemw |
Last Packager: | willemw |
Votes: | 17 |
Popularity: | 0.086750 |
First Submitted: | 2012-12-04 12:18 (UTC) |
Last Updated: | 2022-01-02 09:04 (UTC) |
Dependencies (12)
- freetype2 (freetype2-minimal-git, freetype2-ttmetrics, freetype2-v35, freetype2-git, freetype2-infinality-remix, freetype2-ultimate5)
- ghostscript
- gtk2 (gtk2-ubuntu, gtk2-git, gtk2-minimal-git, gtk2-patched-filechooser-icon-view, gtk2-maemo)
- libjpeg (libjpeg-turbo-minimal-git, mozjpeg-git, mozjpeg, libjpeg-turbo-git, libjpeg-turbo)
- libpaper
- libpng (libpng-apng, libpng-minimal-git, libpng-git)
- libtiff (libtiff-git, libtiff-minimal-git, libtiff-lerc, libtiff-maya-git)
- libxpm (libxpm-git)
- pcre (pcre-svn)
- zlib (zlib-static, zlib-git, zlib-asm, minizip-asm, zlib-ng, zlib-ng-compat-git)
- inetutils (gettext-hostname, inetutils-git) (make)
- lsb-release (make)
Required by (0)
Sources (25)
- https://ftp.nluug.nl/pub/editors/ted/ted-2.23.src.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/TedDocument-de_DE.rtf
- https://ftp.nluug.nl/pub/editors/ted/TedDocument-fr_FR.rtf
- https://ftp.nluug.nl/pub/editors/ted/TedDocument-mg_MG.rtf
- https://ftp.nluug.nl/pub/editors/ted/ted_bg_BG.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_cs_CZ.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_da_DK.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_de_DE.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_en_GB.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_es_AR.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_es_ES.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_fi_FI.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_fr_FR.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_hr_HR.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_hu_HU.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_it_IT.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_mg_MG.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_nb_NO.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_nl_NL.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_pl_PL.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_pt_BR.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_pt_PT.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_ru_RU.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_sk_SK.tar.gz
- https://ftp.nluug.nl/pub/editors/ted/ted_sv_SE.tar.gz
Latest Comments
willemw commented on 2022-03-14 06:42 (UTC)
"Configure" is normally run before "make", in a single thread, to setup makefiles. The reason of the build errors was that "configure" here runs inside "make", which runs multiple threads, causing build race-conditions.
frankspace commented on 2022-03-13 23:52 (UTC)
Apologies for how long it took, but the current PKGBUILD does now work for me without any pesky tampering or re-running
makepkg
or anything like that. Thank you!willemw commented on 2021-12-25 18:11 (UTC)
@frankspace: for me it is very difficult to reproduce any build error.
You could try adding/replacing
options=(!buildflags !makeflags)
in PKGBUILD, which probably will also make no difference. See https://wiki.archlinux.org/title/Makepkg#Makepkg_fails,_but_make_succeedsAdding this gets very close to running make manually. With
echo $VARIABLE
in PKGBUILD and on the command line you can print the build and make values listed in /etc/makepkg.conf and check the difference.frankspace commented on 2021-12-25 17:37 (UTC)
Thank you! So, that's wild. Turns out, on my box,
options=(!buildflags)
doesn't make any noticable difference (I tested this outside a chroot, so YMMV) -- but I have to runmakepkg
three times in a row (without tampering with the src and pkg folders) before compilation succeeds all the way through. I once again am not clever enough to have any idea why, but I suspect the build flags are not actually the issue one way or the other.willemw commented on 2021-12-25 09:13 (UTC)
@frankspace:
That
with-GTK
warning is always there.Remove the
options=(!buildflags)
line from PKGBUILD and try again (without any old build files). This will build with the build flags from /etc/makepkg.conf. When running make manually, it won't build with those flags.The build only sometimes fails. Adding
options=(!buildflags)
seemed to fix it. But could eventually, after trying several times, produce a build error in an up-to-date clean chroot build environment. Will removeoptions=(!buildflags)
again.frankspace commented on 2021-12-24 18:19 (UTC)
Compilation fails for me, repeatedly telling me
configure: WARNING: unrecognized options: --with-GTK
. I've tried this both in a clean chroot and not. Blindly removing "CONFIGURE_OPTIONS=--with-GTK" from the Makefile seemingly solves that issue, but compilation nevertheless terminates, just sayingERROR: A failure occurred in build().
. The only hint I can find in the output thereafter is that midway there, I getmake: *** [Makefile:170: lib/docEdit.a] Error 2
andmake: *** [Makefile:198: lib/utilPs.a] Error 2
. I am not clever enough to have any idea where to start looking for the source of the problem. Inexplicably, when I just uncompress the source and runmake
manually, compilation succeeds just fine.willemw commented on 2021-10-29 11:09 (UTC)
Build succeeds when adding
options=(!buildflags)
to PGKBUILD.sez11a commented on 2021-10-27 22:36 (UTC)
This package doesn't build. Fails here:
willemw commented on 2018-06-15 07:15 (UTC)
@es_18: Updated to use https, in addition to some fixes/cleanups.
es_18 commented on 2018-06-14 21:43 (UTC)
Wouldn't it be more secure to use http rather than https for the sources? The server accepts https as well.
willemw commented on 2017-03-02 17:38 (UTC)
ohreally commented on 2017-03-02 16:17 (UTC)
willemw commented on 2016-01-20 08:05 (UTC)
trialuser commented on 2016-01-20 04:39 (UTC)
willemw commented on 2015-10-16 15:33 (UTC)
blippy commented on 2015-10-16 14:59 (UTC) (edited on 2015-10-16 15:10 (UTC) by blippy)
haawda commented on 2015-02-15 00:58 (UTC)
anamesa commented on 2014-02-21 20:25 (UTC)
willemw commented on 2014-02-16 14:00 (UTC)
anamesa commented on 2014-02-16 08:18 (UTC)