Thanks to the comment of hermes14; this fixed it for me:
cd /etc/fonts/conf.d
for i in `ls ../conf.avail/*`
do
sudo ln -s $i
done
Search Criteria
Package Details: fontconfig-ubuntu 2.15.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/fontconfig-ubuntu.git (read-only, click to copy) |
---|---|
Package Base: | fontconfig-ubuntu |
Description: | A library for configuring and customizing font access (with Ubuntu patches) |
Upstream URL: | https://launchpad.net/ubuntu/+source/fontconfig |
Licenses: | LicenseRef-custom |
Conflicts: | fontconfig |
Provides: | fontconfig, libfontconfig.so |
Submitter: | wonder |
Maintainer: | dbermond |
Last Packager: | dbermond |
Votes: | 353 |
Popularity: | 0.008382 |
First Submitted: | 2008-07-28 18:25 (UTC) |
Last Updated: | 2024-02-26 14:21 (UTC) |
Dependencies (16)
- expat (expat-gitAUR)
- libfreetype.so (freetype2-qdoledAUR, freetype2-macosAUR, freetype2-gitAUR, freetype2, lib32-freetype2)
- autoconf-archive (autoconf-archive-gitAUR) (make)
- docbook-sgml (make)
- docbook-utils (make)
- expat (expat-gitAUR) (make)
- freetype2 (freetype2-qdoledAUR, freetype2-macosAUR, freetype2-gitAUR) (make)
- gperf (gperf-gitAUR) (make)
- json-c (json-c-gitAUR) (make)
- lynx (lynx-gitAUR, lynx-currentAUR) (make)
- perl-sgmls (make)
- python-lxml (make)
- python-six (make)
- texlive-formatsextra (texlive-installerAUR, texlive-fullAUR, texlive-dummyAUR) (make)
- texlive-latexrecommended (texlive-installerAUR, texlive-fullAUR, texlive-dummyAUR) (make)
- unzip (unzip-natspecAUR, unzip-zstdAUR) (check)
Required by (1533)
- 3270-fonts (requires fontconfig)
- 4l (requires fontconfig)
- 64gram-desktop-bin (requires fontconfig)
- ab-download-manager (requires fontconfig)
- ab-download-manager-git (requires fontconfig)
- abdownloadmanager-bin (requires fontconfig)
- abiword-git (requires fontconfig)
- activinspire (requires fontconfig)
- aegisub-arch1t3cht (requires fontconfig)
- aegisub-arch1t3cht-git (requires fontconfig)
- aegisub-arch1t3cht-qt5-git (requires fontconfig)
- aegisub-git (requires fontconfig)
- aegisub-japan7-git (requires fontconfig)
- aegisub-ttools-meson-git (requires fontconfig)
- aegisub-wangqr-git (requires fontconfig)
- aerzte_sans (requires fontconfig)
- aftershotpro2 (requires fontconfig)
- agar (requires fontconfig) (optional)
- aide-bin (requires fontconfig)
- ajour (requires fontconfig)
- Show 1513 more...
Sources (5)
Latest Comments
« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 19 Next › Last »
mihi commented on 2012-09-25 19:46 (UTC)
hermes14 commented on 2012-09-25 17:28 (UTC)
My fonts look great with 2.10, there's no difference at all with the previous version. This configuration works for me (symlinks under /etc/fonts/conf.d):
10-antialias.conf
10-hinting-slight.conf
10-hinting.conf
10-sub-pixel-rgb.conf
11-lcdfilter-default.conf
20-unhint-small-dejavu-sans-mono.conf
20-unhint-small-dejavu-sans.conf
20-unhint-small-dejavu-serif.conf
30-metric-aliases.conf
30-urw-aliases.conf
31-cantarell.conf
40-nonlatin.conf
45-latin.conf
49-sansserif.conf
51-local.conf
57-dejavu-sans-mono.conf
57-dejavu-sans.conf
57-dejavu-serif.conf
60-latin.conf
65-fonts-persian.conf
65-nonlatin.conf
69-unifont.conf
70-no-bitmaps.conf
80-delicious.conf
90-synthetic.conf
Hope this helps.
Birkov commented on 2012-09-25 16:49 (UTC)
@madmack
Sorry, was working on that but my pkgbuild fails at ./configure and at the moment I have neither the skills nor the time to figure it out. Maybe you can, so far I have:
# Maintainer: Tevin Zhang <mail2tevin {at} gmail {dot} com>
# Contributor: Andrea Fagiani <andfagiani {at} gmail {dot} com>
# Contributor: Biru Ionut <biru.ionut at gmail.com>
# Contributor: Paul Bredbury <brebs@sent.com>
# Installation order: freetype2-ubuntu fontconfig-ubuntu libxft-ubuntu cairo-ubuntu
pkgname=fontconfig-ubuntu
pkgver=2.8.0
pkgrel=2
pkgdesc="A library for configuring and customizing font access, with Ubuntu's LCD rendering patches."
arch=('i686' 'x86_64')
url="https://launchpad.net/ubuntu/precise/+source/fontconfig"
license=('custom')
depends=('expat>=2.0.1' 'freetype2-ubuntu>=2.3.11')
conflicts=('fontconfig')
provides=("fontconfig=$pkgver")
options=('!libtool')
install=fontconfig.install
source=(http://archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/fontconfig_$pkgver.orig.tar.gz)
md5sums=('77e15a92006ddc2adbb06f840d591c0e')
build() {
# Enable Position Independent Code for prelinking
export CFLAGS="$CFLAGS -fPIC"
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-templatedir=/etc/fonts/conf.avail \
--with-xmldir=/etc/fonts \
--localstatedir=/var \
--disable-static \
--with-default-fonts=/usr/share/fonts \
--with-add-fonts=/usr/share/fonts
make
make DESTDIR=$pkgdir install
rm -f $pkgdir/etc/fonts/conf.d/*.conf
# License
install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
# Docs
install -Dm0644 $srcdir/debian/changelog $pkgdir/usr/share/doc/fontconfig/changelog
}
madmack commented on 2012-09-25 15:49 (UTC)
PKGBUILD http://pastebin.com/nwbzjvzq
fontconfig.install http://pastebin.com/tYkH95MG
here you go my friend. fonts do look better now.
just makepkg -s and then #pacman -U *.xz
Birkov commented on 2012-09-25 15:44 (UTC)
@madmack
Sorry, was working on that but my pkgbuild fails at ./configure and at the moment I have neither the skills nor the time to figure it out. Maybe you can, so far I have:
# Maintainer: Tevin Zhang <mail2tevin {at} gmail {dot} com>
# Contributor: Andrea Fagiani <andfagiani {at} gmail {dot} com>
# Contributor: Biru Ionut <biru.ionut at gmail.com>
# Contributor: Paul Bredbury <brebs@sent.com>
# Installation order: freetype2-ubuntu fontconfig-ubuntu libxft-ubuntu cairo-ubuntu
pkgname=fontconfig-ubuntu
pkgver=2.8.0
pkgrel=2
pkgdesc="A library for configuring and customizing font access, with Ubuntu's LCD rendering patches."
arch=('i686' 'x86_64')
url="https://launchpad.net/ubuntu/precise/+source/fontconfig"
license=('custom')
depends=('expat>=2.0.1' 'freetype2-ubuntu>=2.3.11')
conflicts=('fontconfig')
provides=("fontconfig=$pkgver")
options=('!libtool')
install=fontconfig.install
source=(http://archive.ubuntu.com/ubuntu/pool/main/f/fontconfig/fontconfig_$pkgver.orig.tar.gz)
md5sums=('77e15a92006ddc2adbb06f840d591c0e')
build() {
# Enable Position Independent Code for prelinking
export CFLAGS="$CFLAGS -fPIC"
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-templatedir=/etc/fonts/conf.avail \
--with-xmldir=/etc/fonts \
--localstatedir=/var \
--disable-static \
--with-default-fonts=/usr/share/fonts \
--with-add-fonts=/usr/share/fonts
make
make DESTDIR=$pkgdir install
rm -f $pkgdir/etc/fonts/conf.d/*.conf
# License
install -Dm0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
# Docs
install -Dm0644 $srcdir/debian/changelog $pkgdir/usr/share/doc/fontconfig/changelog
}
madmack commented on 2012-09-25 15:29 (UTC)
same here. fonts look terrible after updating this package. u got the 2.8 PKGBUILD per chance?
Birkov commented on 2012-09-25 14:55 (UTC)
I removed fontconfig-lcd but fonts still don't look nice. I used ubuntu fonts with full hinting and rgb-sub-pixel order but I had to deactivate both hinting and sub-pixel order in xfce and set the ubuntu font to a bigger size to make things readable again. Please fix or make a pkgbuild for version 2.8
Siavash commented on 2012-09-25 03:41 (UTC)
Hello, please add "libtool" to the dependencies list. Thanks for maintaining this package!
<deleted-account> commented on 2012-09-25 02:38 (UTC)
Thanks for the feedback, Hspasta.
Pinned Comments
dbermond commented on 2021-07-27 15:23 (UTC)
@eimis @theokonos This is not a packaging issue. Either uninstall bubblewrap or build the package in a clean chroot with devtools.