from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

81965

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.4 (42 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-11-07
chromium - 143.0.7499.4
Ebuild name:

www-client/chromium-143.0.7499.4

Description

Open-source version of Google Chrome web browser

Added to portage

2025-11-07

ffmpeg-chromium - 143
Ebuild name:

media-video/ffmpeg-chromium-143

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2025-11-07

girara - 0.4.5-r1
Ebuild name:

dev-libs/girara-0.4.5-r1

Description

UI library that focuses on simplicity and minimalism

Added to portage

2025-11-07

gn - 0.2289
Ebuild name:

dev-build/gn-0.2289

Description

GN is a meta-build system that generates build files for Ninja

Added to portage

2025-11-07

grub - 2.14_rc1-r1
Ebuild name:

sys-boot/grub-2.14_rc1-r1

Description

GNU GRUB boot loader

Added to portage

2025-11-07

libreoffice - 25.2.7.2-r1
Ebuild name:

app-office/libreoffice-25.2.7.2-r1

Description

A full office productivity suite

Added to portage

2025-11-07

parsebib - 6.7
Ebuild name:

app-emacs/parsebib-6.7

Description

Emacs Lisp library for reading .bib files

Added to portage

2025-11-07

parseclj - 1.1.1
Ebuild name:

app-emacs/parseclj-1.1.1

Description

Clojure Parser for Emacs Lisp

Added to portage

2025-11-07

poppler - 25.11.0
Ebuild name:

app-text/poppler-25.11.0

Description

PDF rendering library based on the xpdf-3.0 code base

Added to portage

2025-11-07

rivet - 4.1.2
Ebuild name:

sci-physics/rivet-4.1.2

Description

Rivet toolkit (Robust Independent Validation of Experiment and Theory)

Added to portage

2025-11-07

runc - 1.2.8
Ebuild name:

app-containers/runc-1.2.8

Description

runc container cli tools

Added to portage

2025-11-07

runc - 1.3.3
Ebuild name:

app-containers/runc-1.3.3

Description

runc container cli tools

Added to portage

2025-11-07

vivaldi-snapshot - 7.7.3851.25
Ebuild name:

www-client/vivaldi-snapshot-7.7.3851.25

Description

A browser for our friends

Added to portage

2025-11-07

zathura - 0.5.13
Ebuild name:

app-text/zathura-0.5.13

Description

Highly customizable & functional document viewer

Added to portage

2025-11-07

2025-11-06
actioncable - 8.1.1
Ebuild name:

dev-ruby/actioncable-8.1.1

Description

Integrated WebSockets for Rails

Added to portage

2025-11-06

actionmailbox - 8.1.1
Ebuild name:

dev-ruby/actionmailbox-8.1.1

Description

Framework for designing email-service layers

Added to portage

2025-11-06

actionmailer - 8.1.1
Ebuild name:

dev-ruby/actionmailer-8.1.1

Description

Framework for designing email-service layers

Added to portage

2025-11-06

actionpack - 8.1.1
Ebuild name:

dev-ruby/actionpack-8.1.1

Description

Eases web-request routing, handling, and response

Added to portage

2025-11-06

actiontext - 8.1.1
Ebuild name:

dev-ruby/actiontext-8.1.1

Description

Edit and display rich text in Rails applications

Added to portage

2025-11-06

actionview - 8.1.1
Ebuild name:

dev-ruby/actionview-8.1.1

Description

Simple, battle-tested conventions and helpers for building web pages

Added to portage

2025-11-06

activejob - 8.1.1
Ebuild name:

dev-ruby/activejob-8.1.1

Description

Job framework with pluggable queues

Added to portage

2025-11-06

activemodel - 8.1.1
Ebuild name:

dev-ruby/activemodel-8.1.1

Description

Toolkit for building modeling frameworks like Active Record and Active R

Added to portage

2025-11-06

activerecord - 8.1.1
Ebuild name:

dev-ruby/activerecord-8.1.1

Description

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM

Added to portage

2025-11-06

activestorage - 8.1.1
Ebuild name:

dev-ruby/activestorage-8.1.1

Description

Attach cloud and local files in Rails applications

Added to portage

2025-11-06

activesupport - 8.1.1
Ebuild name:

dev-ruby/activesupport-8.1.1

Description

Utility Classes and Extension to the Standard Library

Added to portage

2025-11-06

akonadi - 25.08.3
Ebuild name:

kde-apps/akonadi-25.08.3

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-11-06

akonadi-calendar - 25.08.3
Ebuild name:

kde-apps/akonadi-calendar-25.08.3

Description

Library for akonadi calendar integration

Added to portage

2025-11-06

akonadi-calendar-tools-common - 25.08.3
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.08.3

Description

Added to portage

2025-11-06

akonadi-contacts - 25.08.3
Ebuild name:

kde-apps/akonadi-contacts-25.08.3

Description

Library for akonadi contact integration

Added to portage

2025-11-06

akonadi-import-wizard - 25.08.3
Ebuild name:

kde-apps/akonadi-import-wizard-25.08.3

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2025-11-06

akonadi-mime - 25.08.3
Ebuild name:

kde-apps/akonadi-mime-25.08.3

Description

Library for akonadi mime types

Added to portage

2025-11-06

akonadi-search - 25.08.3
Ebuild name:

kde-apps/akonadi-search-25.08.3

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2025-11-06

akonadiconsole - 25.08.3
Ebuild name:

kde-apps/akonadiconsole-25.08.3

Description

Application for debugging Akonadi Resources

Added to portage

2025-11-06

akregator - 25.08.3
Ebuild name:

kde-apps/akregator-25.08.3

Description

News feed aggregator

Added to portage

2025-11-06

alligator - 25.08.3
Ebuild name:

net-news/alligator-25.08.3

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2025-11-06

analitza - 25.08.3
Ebuild name:

kde-apps/analitza-25.08.3

Description

KDE library for mathematical features

Added to portage

2025-11-06

apsw - 3.51.0.0
Ebuild name:

dev-python/apsw-3.51.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2025-11-06

ark - 25.08.3
Ebuild name:

kde-apps/ark-25.08.3

Description

File archiver by KDE

Added to portage

2025-11-06

artikulate - 25.08.3
Ebuild name:

kde-apps/artikulate-25.08.3

Description

Language learning application that helps improving pronunciation skills

Added to portage

2025-11-06

audex - 25.08.3
Ebuild name:

media-sound/audex-25.08.3

Description

Tool for ripping compact discs

Added to portage

2025-11-06

audiocd-kio - 25.08.3
Ebuild name:

kde-apps/audiocd-kio-25.08.3

Description

KIO worker for accessing audio CDs

Added to portage

2025-11-06

awscli - 1.42.67
Ebuild name:

app-admin/awscli-1.42.67

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-06

baloo-widgets - 25.08.3
Ebuild name:

kde-apps/baloo-widgets-25.08.3

Description

Widget library for baloo

Added to portage

2025-11-06

blinken - 25.08.3
Ebuild name:

kde-apps/blinken-25.08.3

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2025-11-06

bluetui - 0.7.2
Ebuild name:

net-wireless/bluetui-0.7.2

Description

TUI for managing bluetooth on Linux

Added to portage

2025-11-06

bomber - 25.08.3
Ebuild name:

kde-apps/bomber-25.08.3

Description

Single player arcade bombing game

Added to portage

2025-11-06

boto3 - 1.40.67
Ebuild name:

dev-python/boto3-1.40.67

Description

The AWS SDK for Python

Added to portage

2025-11-06

botocore - 1.40.67
Ebuild name:

dev-python/botocore-1.40.67

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-06

bovo - 25.08.3
Ebuild name:

kde-apps/bovo-25.08.3

Description

Five-in-a-row Board Game

Added to portage

2025-11-06

cache_tab - 1.0.33
Ebuild name:

dev-erlang/cache_tab-1.0.33

Description

In-memory cache Erlang and Elixir library

Added to portage

2025-11-06

calendarjanitor - 25.08.3
Ebuild name:

kde-apps/calendarjanitor-25.08.3

Description

Tool to scan calendar data for buggy instances

Added to portage

2025-11-06

calendarsupport - 25.08.3
Ebuild name:

kde-apps/calendarsupport-25.08.3

Description

Calendar support library

Added to portage

2025-11-06

cantor - 25.08.3
Ebuild name:

kde-apps/cantor-25.08.3

Description

Interface for doing mathematics and scientific computing

Added to portage

2025-11-06

chrome-binary-plugins - 142.0.7444.134
Ebuild name:

www-plugins/chrome-binary-plugins-142.0.7444.134

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2025-11-06

chromedriver-bin - 142.0.7444.134
Ebuild name:

www-apps/chromedriver-bin-142.0.7444.134

Description

WebDriver for Chrome

Added to portage

2025-11-06

chromium - 142.0.7444.134
Ebuild name:

www-client/chromium-142.0.7444.134

Description

Open-source version of Google Chrome web browser

Added to portage

2025-11-06

colord-kde - 25.08.3
Ebuild name:

kde-misc/colord-kde-25.08.3

Description

Provides interfaces and session daemon to colord

Added to portage

2025-11-06

curl - 8.17.0
Ebuild name:

net-misc/curl-8.17.0

Description

A Client that groks URLs

Added to portage

2025-11-06

cutlass - 4.1.0
Ebuild name:

dev-libs/cutlass-4.1.0

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

cutlass - 4.2.1
Ebuild name:

dev-libs/cutlass-4.2.1

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

cython - 3.2.0
Ebuild name:

dev-python/cython-3.2.0

Description

A Python to C compiler

Added to portage

2025-11-06

distrobox - 1.8.2.1
Ebuild name:

app-containers/distrobox-1.8.2.1

Description

Use any Linux distribution inside your terminal (powered by docker

Added to portage

2025-11-06

django - 4.2.26
Ebuild name:

dev-python/django-4.2.26

Description

High-level Python web framework

Added to portage

2025-11-06

django - 5.1.14
Ebuild name:

dev-python/django-5.1.14

Description

High-level Python web framework

Added to portage

2025-11-06

django - 5.2.8
Ebuild name:

dev-python/django-5.2.8

Description

High-level Python web framework

Added to portage

2025-11-06

dnsruby - 1.73.1
Ebuild name:

dev-ruby/dnsruby-1.73.1

Description

A pure Ruby DNS client library

Added to portage

2025-11-06

docutils - 0.22.3
Ebuild name:

dev-python/docutils-0.22.3

Description

Python Documentation Utilities (reference reStructuredText impl.)

Added to portage

2025-11-06

dolphin - 25.08.3
Ebuild name:

kde-apps/dolphin-25.08.3

Description

Plasma filemanager focusing on usability

Added to portage

2025-11-06

dolphin-plugins-common - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-common-25.08.3

Description

Added to portage

2025-11-06

dolphin-plugins-dropbox - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.08.3

Description

Dolphin plugin for Dropbox service integration

Added to portage

2025-11-06

dolphin-plugins-git - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-git-25.08.3

Description

Dolphin plugin for Git integration

Added to portage

2025-11-06

dolphin-plugins-makefileactions - 25.08.3
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.08.3

Description

Dolphin plugin for Makefile targets integration

Added to portage

2025-11-06

dolphin-plugins-mercurial - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.08.3

Description

Dolphin plugin for Mercurial integration

Added to portage

2025-11-06

dolphin-plugins-mountiso - 25.08.3
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.08.3

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2025-11-06

dolphin-plugins-subversion - 25.08.3
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.08.3

Description

Dolphin plugin for Subversion integration

Added to portage

2025-11-06

dragon - 25.08.3
Ebuild name:

kde-apps/dragon-25.08.3

Description

Simple video player

Added to portage

2025-11-06

eimp - 1.0.26
Ebuild name:

dev-erlang/eimp-1.0.26

Description

Erlang Image Manipulation Process

Added to portage

2025-11-06

ejabberd - 25.10
Ebuild name:

net-im/ejabberd-25.10

Description

Robust, scalable and extensible XMPP server

Added to portage

2025-11-06

elisa - 25.08.3
Ebuild name:

media-sound/elisa-25.08.3

Description

Simple music player by KDE

Added to portage

2025-11-06

esip - 1.0.59
Ebuild name:

dev-erlang/esip-1.0.59

Description

ProcessOne SIP server component

Added to portage

2025-11-06

eventviews - 25.08.3
Ebuild name:

kde-apps/eventviews-25.08.3

Description

Calendar viewer for KDE PIM

Added to portage

2025-11-06

ezlib - 1.0.15
Ebuild name:

dev-erlang/ezlib-1.0.15

Description

Native zlib driver for Erlang and Elixir

Added to portage

2025-11-06

fakeredis - 2.32.1
Ebuild name:

dev-python/fakeredis-2.32.1

Description

Fake implementation of redis API for testing purposes

Added to portage

2025-11-06

falkon - 25.08.3
Ebuild name:

www-client/falkon-25.08.3

Description

Cross-platform web browser using QtWebEngine

Added to portage

2025-11-06

fast_tls - 1.1.25
Ebuild name:

dev-erlang/fast_tls-1.1.25

Description

TLS/SSL native driver for Erlang and Elixir

Added to portage

2025-11-06

fast_xml - 1.1.57
Ebuild name:

dev-erlang/fast_xml-1.1.57

Description

Fast Expat based Erlang XML parsing library

Added to portage

2025-11-06

fast_yaml - 1.0.39
Ebuild name:

dev-erlang/fast_yaml-1.0.39

Description

Fast Yaml native library for Erlang and Elixir

Added to portage

2025-11-06

ffmpegthumbs - 25.08.3
Ebuild name:

kde-apps/ffmpegthumbs-25.08.3

Description

FFmpeg based thumbnail generator for video files

Added to portage

2025-11-06

filelight - 25.08.3
Ebuild name:

kde-apps/filelight-25.08.3

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2025-11-06

francis - 25.08.3
Ebuild name:

app-misc/francis-25.08.3

Description

Productivity application using the well-known pomodoro technique

Added to portage

2025-11-06

gherkin-official - 36.1.0
Ebuild name:

dev-python/gherkin-official-36.1.0

Description

Gherkin parser/compiler for Python

Added to portage

2025-11-06

google-api-python-client - 2.187.0
Ebuild name:

dev-python/google-api-python-client-2.187.0

Description

Google API Client for Python

Added to portage

2025-11-06

google-auth - 2.43.0
Ebuild name:

dev-python/google-auth-2.43.0

Description

Google Authentication Library

Added to portage

2025-11-06

google-chrome - 142.0.7444.134
Ebuild name:

www-client/google-chrome-142.0.7444.134

Description

The web browser from Google

Added to portage

2025-11-06

granatier - 25.08.3
Ebuild name:

kde-apps/granatier-25.08.3

Description

KDE Bomberman game

Added to portage

2025-11-06

grantlee-editor - 25.08.3
Ebuild name:

kde-apps/grantlee-editor-25.08.3

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2025-11-06

grantleetheme - 25.08.3
Ebuild name:

kde-apps/grantleetheme-25.08.3

Description

Library for Grantlee plugins

Added to portage

2025-11-06

gwenview - 25.08.3
Ebuild name:

kde-apps/gwenview-25.08.3

Description

Image viewer by KDE

Added to portage

2025-11-06

hypothesis - 6.146.0
Ebuild name:

dev-python/hypothesis-6.146.0

Description

A library for property based testing

Added to portage

2025-11-06

icalendar - 6.3.2
Ebuild name:

dev-python/icalendar-6.3.2

Description

Package used for parsing and generating iCalendar files (RFC 2445)

Added to portage

2025-11-06

incidenceeditor - 25.08.3
Ebuild name:

kde-apps/incidenceeditor-25.08.3

Description

Incidence editor for KOrganizer

Added to portage

2025-11-06

ipython - 9.7.0
Ebuild name:

dev-python/ipython-9.7.0

Description

Advanced interactive shell for Python

Added to portage

2025-11-06

iscan - 2.30.4.2-r5
Ebuild name:

media-gfx/iscan-2.30.4.2-r5

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan - 2.30.4.2-r6
Ebuild name:

media-gfx/iscan-2.30.4.2-r6

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan-plugin-gt-f500 - 1.0.0.1-r2
Ebuild name:

media-gfx/iscan-plugin-gt-f500-1.0.0.1-r2

Description

Epson Perfection 2480/2580 PHOTO scanner plugin for SANE

Added to portage

2025-11-06

iscan-plugin-gt-f720 - 0.0.1.2-r1
Ebuild name:

media-gfx/iscan-plugin-gt-f720-0.0.1.2-r1

Description

Epson Perfection V300 PHOTO scanner plugin for SANE 'epko

Added to portage

2025-11-06

iscan-plugin-gt-x770 - 2.1.2.1-r4
Ebuild name:

media-gfx/iscan-plugin-gt-x770-2.1.2.1-r4

Description

Epson Perfection V500 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

iscan-plugin-gt-x820 - 2.2.0.1-r1
Ebuild name:

media-gfx/iscan-plugin-gt-x820-2.2.0.1-r1

Description

Epson Perfection V600 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

isoimagewriter - 25.08.3
Ebuild name:

app-cdr/isoimagewriter-25.08.3

Description

Write hybrid ISO files onto a USB disk

Added to portage

2025-11-06

jaq - 3.0.0_alpha
Ebuild name:

app-misc/jaq-3.0.0_alpha

Description

Just another JSON query tool

Added to portage

2025-11-06

juk - 25.08.3
Ebuild name:

kde-apps/juk-25.08.3

Description

Jukebox and music manager by KDE

Added to portage

2025-11-06

k3b - 25.08.3
Ebuild name:

kde-apps/k3b-25.08.3

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2025-11-06

kaccounts-integration - 25.08.3
Ebuild name:

kde-apps/kaccounts-integration-25.08.3

Description

Administer web accounts for the sites and services across th

Added to portage

2025-11-06

kaccounts-providers - 25.08.3
Ebuild name:

kde-apps/kaccounts-providers-25.08.3

Description

KDE accounts providers

Added to portage

2025-11-06

kaddressbook - 25.08.3
Ebuild name:

kde-apps/kaddressbook-25.08.3

Description

Address book application based on KDE Frameworks

Added to portage

2025-11-06

kajongg - 25.08.3
Ebuild name:

kde-apps/kajongg-25.08.3

Description

Classical Mah Jongg for four players

Added to portage

2025-11-06

kalarm - 25.08.3
Ebuild name:

kde-apps/kalarm-25.08.3

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2025-11-06

kalgebra - 25.08.3
Ebuild name:

kde-apps/kalgebra-25.08.3

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2025-11-06

kalzium - 25.08.3
Ebuild name:

kde-apps/kalzium-25.08.3

Description

Periodic table of the elements

Added to portage

2025-11-06

kamera - 25.08.3
Ebuild name:

kde-apps/kamera-25.08.3

Description

Plasma integration for gphoto2 cameras

Added to portage

2025-11-06

kamoso - 25.08.3
Ebuild name:

kde-apps/kamoso-25.08.3

Description

Application to take pictures and videos from your webcam

Added to portage

2025-11-06

kanagram - 25.08.3
Ebuild name:

kde-apps/kanagram-25.08.3

Description

Game based on anagrams of words

Added to portage

2025-11-06

kapman - 25.08.3
Ebuild name:

kde-apps/kapman-25.08.3

Description

Pac-Man clone by KDE

Added to portage

2025-11-06

kapptemplate - 25.08.3
Ebuild name:

kde-apps/kapptemplate-25.08.3

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2025-11-06

kasts - 25.08.3
Ebuild name:

media-sound/kasts-25.08.3

Description

Convergent podcast application for desktop and mobile

Added to portage

2025-11-06

kate - 25.08.3
Ebuild name:

kde-apps/kate-25.08.3

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2025-11-06

kate-addons - 25.08.3
Ebuild name:

kde-apps/kate-addons-25.08.3

Description

Addons used by Kate

Added to portage

2025-11-06

kate-common - 25.08.3
Ebuild name:

kde-apps/kate-common-25.08.3

Description

Added to portage

2025-11-06

kate-lib - 25.08.3
Ebuild name:

kde-apps/kate-lib-25.08.3

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2025-11-06

katomic - 25.08.3
Ebuild name:

kde-apps/katomic-25.08.3

Description

KDE Atomic Entertainment Game

Added to portage

2025-11-06

kbackup - 25.08.3
Ebuild name:

kde-apps/kbackup-25.08.3

Description

Program that lets you back up any directories or files

Added to portage

2025-11-06

kblackbox - 25.08.3
Ebuild name:

kde-apps/kblackbox-25.08.3

Description

Game of hide and seek played on a grid of boxes

Added to portage

2025-11-06

kblocks - 25.08.3
Ebuild name:

kde-apps/kblocks-25.08.3

Description

Single-player Tetris-like KDE game

Added to portage

2025-11-06

kbounce - 25.08.3
Ebuild name:

kde-apps/kbounce-25.08.3

Description

KDE Bounce Ball Game

Added to portage

2025-11-06

kbreakout - 25.08.3
Ebuild name:

kde-apps/kbreakout-25.08.3

Description

Breakout-like game by KDE

Added to portage

2025-11-06

kbruch - 25.08.3
Ebuild name:

kde-apps/kbruch-25.08.3

Description

Educational application to learn calculating with fractions

Added to portage

2025-11-06

kcachegrind - 25.08.3
Ebuild name:

kde-apps/kcachegrind-25.08.3

Description

Frontend for Cachegrind by KDE

Added to portage

2025-11-06

kcalc - 25.08.3
Ebuild name:

kde-apps/kcalc-25.08.3

Description

KDE calculator

Added to portage

2025-11-06

kcalutils - 25.08.3
Ebuild name:

kde-apps/kcalutils-25.08.3

Description

Library providing utility functions for the handling of calendar data

Added to portage

2025-11-06

kcharselect - 25.08.3
Ebuild name:

kde-apps/kcharselect-25.08.3

Description

KDE character selection utility

Added to portage

2025-11-06

kclock - 25.08.3
Ebuild name:

kde-misc/kclock-25.08.3

Description

Convergent clock application for Plasma

Added to portage

2025-11-06

kcolorchooser - 25.08.3
Ebuild name:

kde-apps/kcolorchooser-25.08.3

Description

KDE color selector/editor

Added to portage

2025-11-06

kcron - 25.08.3
Ebuild name:

kde-apps/kcron-25.08.3

Description

KDE Task Scheduler

Added to portage

2025-11-06

kde-apps-meta - 25.08.3
Ebuild name:

kde-apps/kde-apps-meta-25.08.3

Description

Meta package for the KDE Release Service collection

Added to portage

2025-11-06

kde-dev-scripts - 25.08.3
Ebuild name:

kde-apps/kde-dev-scripts-25.08.3

Description

KDE Development Scripts

Added to portage

2025-11-06

kde-dev-utils - 25.08.3
Ebuild name:

kde-apps/kde-dev-utils-25.08.3

Description

KDE Development Utilities

Added to portage

2025-11-06

kdeaccessibility-meta - 25.08.3
Ebuild name:

kde-apps/kdeaccessibility-meta-25.08.3

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2025-11-06

kdeadmin-meta - 25.08.3
Ebuild name:

kde-apps/kdeadmin-meta-25.08.3

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2025-11-06

kdebugsettings - 25.08.3
Ebuild name:

kde-apps/kdebugsettings-25.08.3

Description

Application to enable/disable qCDebug

Added to portage

2025-11-06

kdeconnect - 25.08.3
Ebuild name:

kde-misc/kdeconnect-25.08.3

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2025-11-06

kdecore-meta - 25.08.3
Ebuild name:

kde-apps/kdecore-meta-25.08.3

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2025-11-06

kdeedu-data - 25.08.3
Ebuild name:

kde-apps/kdeedu-data-25.08.3

Description

Shared icons, artwork and data files for educational applications

Added to portage

2025-11-06

kdeedu-meta - 25.08.3
Ebuild name:

kde-apps/kdeedu-meta-25.08.3

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2025-11-06

kdegames-meta - 25.08.3
Ebuild name:

kde-apps/kdegames-meta-25.08.3

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2025-11-06

kdegraphics-meta - 25.08.3
Ebuild name:

kde-apps/kdegraphics-meta-25.08.3

Description

kdegraphics - merge this to pull in all kdegraphics-derived packa

Added to portage

2025-11-06

kdegraphics-mobipocket - 25.08.3
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.08.3

Description

Library to support mobipocket ebooks

Added to portage

2025-11-06

kdemultimedia-meta - 25.08.3
Ebuild name:

kde-apps/kdemultimedia-meta-25.08.3

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2025-11-06

kdenetwork-filesharing - 25.08.3
Ebuild name:

kde-apps/kdenetwork-filesharing-25.08.3

Description

Samba filesharing plugin for file properties

Added to portage

2025-11-06

kdenetwork-meta - 25.08.3
Ebuild name:

kde-apps/kdenetwork-meta-25.08.3

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2025-11-06

kdenlive - 25.08.3
Ebuild name:

kde-apps/kdenlive-25.08.3

Description

Non-linear video editing suite by KDE

Added to portage

2025-11-06

kdepim-addons - 25.08.3
Ebuild name:

kde-apps/kdepim-addons-25.08.3

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2025-11-06

kdepim-meta - 25.08.3
Ebuild name:

kde-apps/kdepim-meta-25.08.3

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2025-11-06

kdepim-runtime - 25.08.3
Ebuild name:

kde-apps/kdepim-runtime-25.08.3

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-11-06

kdesdk-meta - 25.08.3
Ebuild name:

kde-apps/kdesdk-meta-25.08.3

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2025-11-06

kdesdk-thumbnailers - 25.08.3
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.08.3

Description

Thumbnail generator for PO files

Added to portage

2025-11-06

kdeutils-meta - 25.08.3
Ebuild name:

kde-apps/kdeutils-meta-25.08.3

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2025-11-06

kdevelop - 25.08.3
Ebuild name:

dev-util/kdevelop-25.08.3

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2025-11-06

kdevelop-php - 25.08.3
Ebuild name:

dev-util/kdevelop-php-25.08.3

Description

PHP plugin for KDevelop

Added to portage

2025-11-06

kdevelop-python - 25.08.3
Ebuild name:

dev-util/kdevelop-python-25.08.3

Description

Python plugin for KDevelop

Added to portage

2025-11-06

kdf - 25.08.3
Ebuild name:

kde-apps/kdf-25.08.3

Description

KDE free disk space utility

Added to portage

2025-11-06

kdialog - 25.08.3
Ebuild name:

kde-apps/kdialog-25.08.3

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2025-11-06

kdiamond - 25.08.3
Ebuild name:

kde-apps/kdiamond-25.08.3

Description

Single player three-in-a-row game

Added to portage

2025-11-06

keditbookmarks - 25.08.3
Ebuild name:

kde-apps/keditbookmarks-25.08.3

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2025-11-06

keysmith - 25.08.3
Ebuild name:

app-crypt/keysmith-25.08.3

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2025-11-06

kfind - 25.08.3
Ebuild name:

kde-apps/kfind-25.08.3

Description

File finder utility based on KDE Frameworks

Added to portage

2025-11-06

kfourinline - 25.08.3
Ebuild name:

kde-apps/kfourinline-25.08.3

Description

KDE four-in-a-row game

Added to portage

2025-11-06

kgeography - 25.08.3
Ebuild name:

kde-apps/kgeography-25.08.3

Description

Geography learning tool

Added to portage

2025-11-06

kget - 25.08.3
Ebuild name:

kde-apps/kget-25.08.3

Description

Advanced download manager by KDE

Added to portage

2025-11-06

kgoldrunner - 25.08.3
Ebuild name:

kde-apps/kgoldrunner-25.08.3

Description

Game of action and puzzle solving by KDE

Added to portage

2025-11-06

kgpg - 25.08.3
Ebuild name:

kde-apps/kgpg-25.08.3

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2025-11-06

kgraphviewer - 25.08.3
Ebuild name:

media-gfx/kgraphviewer-25.08.3

Description

Graphviz dot graph file viewer

Added to portage

2025-11-06

khangman - 25.08.3
Ebuild name:

kde-apps/khangman-25.08.3

Description

Classical hangman game by KDE

Added to portage

2025-11-06

khelpcenter - 25.08.3
Ebuild name:

kde-apps/khelpcenter-25.08.3

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2025-11-06

kidentitymanagement - 25.08.3
Ebuild name:

kde-apps/kidentitymanagement-25.08.3

Description

Library for managing identitites

Added to portage

2025-11-06

kig - 25.08.3
Ebuild name:

kde-apps/kig-25.08.3

Description

KDE Interactive Geometry tool

Added to portage

2025-11-06

kigo - 25.08.3
Ebuild name:

kde-apps/kigo-25.08.3

Description

Go game by KDE

Added to portage

2025-11-06

killbots - 25.08.3
Ebuild name:

kde-apps/killbots-25.08.3

Description

Kill the bots or they kill you

Added to portage

2025-11-06

kimagemapeditor - 25.08.3
Ebuild name:

kde-apps/kimagemapeditor-25.08.3

Description

Generator of HTML image maps

Added to portage

2025-11-06

kimap - 25.08.3
Ebuild name:

kde-apps/kimap-25.08.3

Description

Library for interacting with IMAP servers

Added to portage

2025-11-06

kio-admin - 25.08.3
Ebuild name:

app-admin/kio-admin-25.08.3

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2025-11-06

kio-blender-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.08.3

Description

KIO thumbnail generator for Blender files

Added to portage

2025-11-06

kio-extras - 25.08.3
Ebuild name:

kde-apps/kio-extras-25.08.3

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2025-11-06

kio-gdrive - 25.08.3
Ebuild name:

kde-misc/kio-gdrive-25.08.3

Description

KIO worker for Google Drive service

Added to portage

2025-11-06

kio-gdrive-common - 25.08.3
Ebuild name:

kde-misc/kio-gdrive-common-25.08.3

Description

Added to portage

2025-11-06

kio-mobi-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.08.3

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2025-11-06

kio-perldoc - 25.08.3
Ebuild name:

dev-util/kio-perldoc-25.08.3

Description

KIO worker interface to browse Perl documentation

Added to portage

2025-11-06

kio-ps-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.08.3

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2025-11-06

kio-raw-thumbnailer - 25.08.3
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.08.3

Description

KIO thumbnail generator for RAW files

Added to portage

2025-11-06

kio-zeroconf - 25.08.3
Ebuild name:

net-misc/kio-zeroconf-25.08.3

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2025-11-06

kiriki - 25.08.3
Ebuild name:

kde-apps/kiriki-25.08.3

Description

An addictive and fun dice game

Added to portage

2025-11-06

kiten - 25.08.3
Ebuild name:

kde-apps/kiten-25.08.3

Description

KDE Japanese dictionary and reference

Added to portage

2025-11-06

kitinerary - 25.08.3
Ebuild name:

kde-apps/kitinerary-25.08.3

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-11-06

kjumpingcube - 25.08.3
Ebuild name:

kde-apps/kjumpingcube-25.08.3

Description

Tactical one or two player game

Added to portage

2025-11-06

kldap - 25.08.3
Ebuild name:

kde-apps/kldap-25.08.3

Description

Library for interacting with LDAP servers

Added to portage

2025-11-06

kleopatra - 25.08.3
Ebuild name:

kde-apps/kleopatra-25.08.3

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2025-11-06

klettres - 25.08.3
Ebuild name:

kde-apps/klettres-25.08.3

Description

Alphabet learning application

Added to portage

2025-11-06

klickety - 25.08.3
Ebuild name:

kde-apps/klickety-25.08.3

Description

An adaptation of the Clickomania game

Added to portage

2025-11-06

klines - 25.08.3
Ebuild name:

kde-apps/klines-25.08.3

Description

A little KDE game about balls and how to get rid of them

Added to portage

2025-11-06

kmag - 25.08.3
Ebuild name:

kde-apps/kmag-25.08.3

Description

KDE screen magnifier

Added to portage

2025-11-06

kmahjongg - 25.08.3
Ebuild name:

kde-apps/kmahjongg-25.08.3

Description

A tile matching game for one or two players

Added to portage

2025-11-06

kmail - 25.08.3
Ebuild name:

kde-apps/kmail-25.08.3

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2025-11-06

kmail-account-wizard - 25.08.3
Ebuild name:

kde-apps/kmail-account-wizard-25.08.3

Description

Assistant for KMail accounts configuration

Added to portage

2025-11-06

kmailtransport - 25.08.3
Ebuild name:

kde-apps/kmailtransport-25.08.3

Description

Mail transport service

Added to portage

2025-11-06

kmbox - 25.08.3
Ebuild name:

kde-apps/kmbox-25.08.3

Description

Library for accessing MBox format mail storages

Added to portage

2025-11-06

kmime - 25.08.3
Ebuild name:

kde-apps/kmime-25.08.3

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2025-11-06

kmines - 25.08.3
Ebuild name:

kde-apps/kmines-25.08.3

Description

Classic mine sweeper game

Added to portage

2025-11-06

kmix - 25.08.3
Ebuild name:

kde-apps/kmix-25.08.3

Description

Volume control gui based on KDE Frameworks

Added to portage

2025-11-06

kmousetool - 25.08.3
Ebuild name:

kde-apps/kmousetool-25.08.3

Description

KDE program that clicks the mouse for you

Added to portage

2025-11-06

kmouth - 25.08.3
Ebuild name:

kde-apps/kmouth-25.08.3

Description

Text-to-speech synthesizer front end

Added to portage

2025-11-06

kmplot - 25.08.3
Ebuild name:

kde-apps/kmplot-25.08.3

Description

Mathematical function plotter

Added to portage

2025-11-06

knavalbattle - 25.08.3
Ebuild name:

kde-apps/knavalbattle-25.08.3

Description

Battleship clone by KDE

Added to portage

2025-11-06

knetwalk - 25.08.3
Ebuild name:

kde-apps/knetwalk-25.08.3

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2025-11-06

knights - 25.08.3
Ebuild name:

kde-apps/knights-25.08.3

Description

Simple chess board based on KDE Frameworks

Added to portage

2025-11-06

kolf - 25.08.3
Ebuild name:

kde-apps/kolf-25.08.3

Description

Minigolf game by KDE

Added to portage

2025-11-06

kollision - 25.08.3
Ebuild name:

kde-apps/kollision-25.08.3

Description

Simple ball dodging game

Added to portage

2025-11-06

kolourpaint - 25.08.3
Ebuild name:

kde-apps/kolourpaint-25.08.3

Description

Paint Program by KDE

Added to portage

2025-11-06

kompare - 25.08.3
Ebuild name:

kde-apps/kompare-25.08.3

Description

Graphical File Differences Tool

Added to portage

2025-11-06

konqueror - 25.08.3
Ebuild name:

kde-apps/konqueror-25.08.3

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2025-11-06

konquest - 25.08.3
Ebuild name:

kde-apps/konquest-25.08.3

Description

Galactic Strategy KDE Game

Added to portage

2025-11-06

konsole - 25.08.3
Ebuild name:

kde-apps/konsole-25.08.3

Description

KDE's terminal emulator

Added to portage

2025-11-06

konsolekalendar - 25.08.3
Ebuild name:

kde-apps/konsolekalendar-25.08.3

Description

Command line interface to KDE calendars

Added to portage

2025-11-06

kontact - 25.08.3
Ebuild name:

kde-apps/kontact-25.08.3

Description

Container application to unify several major PIM applications within one

Added to portage

2025-11-06

kontactinterface - 25.08.3
Ebuild name:

kde-apps/kontactinterface-25.08.3

Description

Library for embedding KParts in a Kontact component

Added to portage

2025-11-06

kontrast - 25.08.3
Ebuild name:

app-accessibility/kontrast-25.08.3

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2025-11-06

konversation - 25.08.3
Ebuild name:

net-irc/konversation-25.08.3

Description

User friendly IRC Client

Added to portage

2025-11-06

kopeninghours - 25.08.3
Ebuild name:

dev-libs/kopeninghours-25.08.3

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2025-11-06

korganizer - 25.08.3
Ebuild name:

kde-apps/korganizer-25.08.3

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2025-11-06

kosmindoormap - 25.08.3
Ebuild name:

dev-libs/kosmindoormap-25.08.3

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-11-06

kpat - 25.08.3
Ebuild name:

kde-apps/kpat-25.08.3

Description

KDE patience game

Added to portage

2025-11-06

kpimtextedit - 25.08.3
Ebuild name:

kde-apps/kpimtextedit-25.08.3

Description

Extended text editor for PIM applications

Added to portage

2025-11-06

kpkpass - 25.08.3
Ebuild name:

kde-apps/kpkpass-25.08.3

Description

Library to deal with Apple Wallet pass files

Added to portage

2025-11-06

kpmcore - 25.08.3
Ebuild name:

sys-libs/kpmcore-25.08.3

Description

Library for managing partitions

Added to portage

2025-11-06

kpublictransport - 25.08.3
Ebuild name:

dev-libs/kpublictransport-25.08.3

Description

Library for accessing public transport timetables and other infor

Added to portage

2025-11-06

kqtquickcharts - 25.08.3
Ebuild name:

kde-apps/kqtquickcharts-25.08.3

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-11-06

krdc - 25.08.3
Ebuild name:

kde-apps/krdc-25.08.3

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2025-11-06

krecorder - 25.08.3
Ebuild name:

media-sound/krecorder-25.08.3

Description

Convergent audio recording application for Plasma

Added to portage

2025-11-06

kreversi - 25.08.3
Ebuild name:

kde-apps/kreversi-25.08.3

Description

Board game by KDE

Added to portage

2025-11-06

krfb - 25.08.3
Ebuild name:

kde-apps/krfb-25.08.3

Description

VNC-compatible server to share Plasma desktops

Added to portage

2025-11-06

kruler - 25.08.3
Ebuild name:

kde-apps/kruler-25.08.3

Description

Screen ruler for Plasma

Added to portage

2025-11-06

ksanecore - 25.08.3
Ebuild name:

media-libs/ksanecore-25.08.3

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2025-11-06

kshisen - 25.08.3
Ebuild name:

kde-apps/kshisen-25.08.3

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2025-11-06

ksirk - 25.08.3
Ebuild name:

kde-apps/ksirk-25.08.3

Description

Port of the board game Risk

Added to portage

2025-11-06

ksmtp - 25.08.3
Ebuild name:

kde-apps/ksmtp-25.08.3

Description

Job-based library to send email through an SMTP server

Added to portage

2025-11-06

ksnakeduel - 25.08.3
Ebuild name:

kde-apps/ksnakeduel-25.08.3

Description

KDE Tron game

Added to portage

2025-11-06

kspaceduel - 25.08.3
Ebuild name:

kde-apps/kspaceduel-25.08.3

Description

Space Game by KDE

Added to portage

2025-11-06

ksquares - 25.08.3
Ebuild name:

kde-apps/ksquares-25.08.3

Description

KDE clone of the game squares

Added to portage

2025-11-06

ksudoku - 25.08.3
Ebuild name:

kde-apps/ksudoku-25.08.3

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2025-11-06

ksystemlog - 25.08.3
Ebuild name:

kde-apps/ksystemlog-25.08.3

Description

System log viewer by KDE

Added to portage

2025-11-06

kteatime - 25.08.3
Ebuild name:

kde-apps/kteatime-25.08.3

Description

KDE timer for making a fine cup of tea

Added to portage

2025-11-06

ktimer - 25.08.3
Ebuild name:

kde-apps/ktimer-25.08.3

Description

Little tool to execute programs after some time

Added to portage

2025-11-06

ktorrent - 25.08.3
Ebuild name:

net-p2p/ktorrent-25.08.3

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2025-11-06

ktouch - 25.08.3
Ebuild name:

kde-apps/ktouch-25.08.3

Description

Program that helps to learn and practice touch typing

Added to portage

2025-11-06

ktuberling - 25.08.3
Ebuild name:

kde-apps/ktuberling-25.08.3

Description

Potato game for kids by KDE

Added to portage

2025-11-06

kturtle - 25.08.3
Ebuild name:

kde-apps/kturtle-25.08.3

Description

Educational programming environment using the Logo programming language

Added to portage

2025-11-06

kubrick - 25.08.3
Ebuild name:

kde-apps/kubrick-25.08.3

Description

Game based on the

Added to portage

2025-11-06

kwalletmanager - 25.08.3
Ebuild name:

kde-apps/kwalletmanager-25.08.3

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2025-11-06

kwave - 25.08.3
Ebuild name:

kde-apps/kwave-25.08.3

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2025-11-06

kweather - 25.08.3
Ebuild name:

kde-misc/kweather-25.08.3

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2025-11-06

kweathercore - 25.08.3
Ebuild name:

dev-libs/kweathercore-25.08.3

Description

Library for retrieval of weather information including forecasts and

Added to portage

2025-11-06

kwordquiz - 25.08.3
Ebuild name:

kde-apps/kwordquiz-25.08.3

Description

Powerful flashcard and vocabulary learning program

Added to portage

2025-11-06

kwrite - 25.08.3
Ebuild name:

kde-apps/kwrite-25.08.3

Description

Simple text editor based on KDE Frameworks

Added to portage

2025-11-06

libdeflate - 1.25
Ebuild name:

app-arch/libdeflate-1.25

Description

Heavily optimized DEFLATE/zlib/gzip (de)compression

Added to portage

2025-11-06

libfm-qt - 2.3.0
Ebuild name:

x11-libs/libfm-qt-2.3.0

Description

Qt Library for Building File Managers

Added to portage

2025-11-06

libgravatar - 25.08.3
Ebuild name:

kde-apps/libgravatar-25.08.3

Description

Library for gravatar integration

Added to portage

2025-11-06

libkcddb - 25.08.3
Ebuild name:

kde-apps/libkcddb-25.08.3

Description

KDE library for CDDB

Added to portage

2025-11-06

libkcddb-common - 25.08.3
Ebuild name:

kde-apps/libkcddb-common-25.08.3

Description

Added to portage

2025-11-06

libkcompactdisc - 25.08.3
Ebuild name:

kde-apps/libkcompactdisc-25.08.3

Description

Library for playing & ripping CDs

Added to portage

2025-11-06

libkdcraw - 25.08.3
Ebuild name:

kde-apps/libkdcraw-25.08.3

Description

Digital camera raw image library wrapper

Added to portage

2025-11-06

libkdegames - 25.08.3
Ebuild name:

kde-apps/libkdegames-25.08.3

Description

Base library common to many KDE games

Added to portage

2025-11-06

libkdepim - 25.08.3
Ebuild name:

kde-apps/libkdepim-25.08.3

Description

Common PIM libraries

Added to portage

2025-11-06

libkeduvocdocument - 25.08.3
Ebuild name:

kde-apps/libkeduvocdocument-25.08.3

Description

Library for reading/writing KVTML

Added to portage

2025-11-06

libkexiv2 - 25.08.3
Ebuild name:

kde-apps/libkexiv2-25.08.3

Description

Wrapper around exiv2 library

Added to portage

2025-11-06

libkgapi - 25.08.3
Ebuild name:

kde-apps/libkgapi-25.08.3

Description

Library for accessing Google calendar and contact resources

Added to portage

2025-11-06

libkleo - 25.08.3
Ebuild name:

kde-apps/libkleo-25.08.3

Description

Library for encryption handling

Added to portage

2025-11-06

libkmahjongg - 25.08.3
Ebuild name:

kde-apps/libkmahjongg-25.08.3

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2025-11-06

libkomparediff2 - 25.08.3
Ebuild name:

kde-apps/libkomparediff2-25.08.3

Description

Library to compare files and strings

Added to portage

2025-11-06

libksane - 25.08.3
Ebuild name:

kde-apps/libksane-25.08.3

Description

SANE Library interface based on KDE Frameworks

Added to portage

2025-11-06

libksane-common - 25.08.3
Ebuild name:

kde-apps/libksane-common-25.08.3

Description

Added to portage

2025-11-06

libksieve - 25.08.3
Ebuild name:

kde-apps/libksieve-25.08.3

Description

Common PIM libraries

Added to portage

2025-11-06

libktnef - 25.08.3
Ebuild name:

kde-apps/libktnef-25.08.3

Description

Library for handling TNEF data

Added to portage

2025-11-06

libktorrent - 25.08.3
Ebuild name:

net-libs/libktorrent-25.08.3

Description

BitTorrent library based on KDE Frameworks

Added to portage

2025-11-06

liblxqt - 2.3.0
Ebuild name:

lxqt-base/liblxqt-2.3.0

Description

Common base library for the LXQt desktop environment

Added to portage

2025-11-06

libqtxdg - 4.3.0
Ebuild name:

dev-libs/libqtxdg-4.3.0

Description

Qt Implementation of XDG Standards

Added to portage

2025-11-06

logbook - 1.9.1
Ebuild name:

dev-python/logbook-1.9.1

Description

A logging replacement for Python

Added to portage

2025-11-06

lokalize - 25.08.3
Ebuild name:

kde-apps/lokalize-25.08.3

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2025-11-06

lskat - 25.08.3
Ebuild name:

kde-apps/lskat-25.08.3

Description

Skat game by KDE

Added to portage

2025-11-06

lximage-qt - 2.3.0
Ebuild name:

media-gfx/lximage-qt-2.3.0

Description

Qt Image Viewer

Added to portage

2025-11-06

lxqt-about - 2.3.0
Ebuild name:

lxqt-base/lxqt-about-2.3.0

Description

LXQt about dialog

Added to portage

2025-11-06

lxqt-admin - 2.3.0
Ebuild name:

lxqt-base/lxqt-admin-2.3.0

Description

LXQt system administration tool

Added to portage

2025-11-06

lxqt-archiver - 1.3.0
Ebuild name:

app-arch/lxqt-archiver-1.3.0

Description

Qt GUI File Archiver

Added to portage

2025-11-06

lxqt-build-tools - 2.3.0
Ebuild name:

dev-util/lxqt-build-tools-2.3.0

Description

LXQt Build Tools

Added to portage

2025-11-06

lxqt-config - 2.3.0
Ebuild name:

lxqt-base/lxqt-config-2.3.0

Description

LXQt system configuration control center

Added to portage

2025-11-06

lxqt-globalkeys - 2.3.0
Ebuild name:

lxqt-base/lxqt-globalkeys-2.3.0

Description

Daemon and library for global keyboard shortcuts registration

Added to portage

2025-11-06

lxqt-menu-data - 2.3.0
Ebuild name:

lxqt-base/lxqt-menu-data-2.3.0

Description

LXQt Menu Files and Translations for Menu Categories

Added to portage

2025-11-06

lxqt-meta - 2.3.0
Ebuild name:

lxqt-base/lxqt-meta-2.3.0

Description

Meta ebuild for LXQt, the Lightweight Desktop Environment

Added to portage

2025-11-06

lxqt-notificationd - 2.3.0
Ebuild name:

lxqt-base/lxqt-notificationd-2.3.0

Description

LXQt notification daemon and library

Added to portage

2025-11-06

lxqt-openssh-askpass - 2.3.0
Ebuild name:

lxqt-base/lxqt-openssh-askpass-2.3.0

Description

LXQt OpenSSH user password prompt tool

Added to portage

2025-11-06

lxqt-panel - 2.3.0
Ebuild name:

lxqt-base/lxqt-panel-2.3.0

Description

LXQt desktop panel and plugins

Added to portage

2025-11-06

lxqt-policykit - 2.3.0
Ebuild name:

lxqt-base/lxqt-policykit-2.3.0

Description

LXQt PolKit authentication agent

Added to portage

2025-11-06

lxqt-powermanagement - 2.3.0
Ebuild name:

lxqt-base/lxqt-powermanagement-2.3.0

Description

LXQt daemon for power management and auto-suspend

Added to portage

2025-11-06

lxqt-qtplugin - 2.3.0
Ebuild name:

lxqt-base/lxqt-qtplugin-2.3.0

Description

LXQt system integration plugin for Qt

Added to portage

2025-11-06

lxqt-runner - 2.3.0
Ebuild name:

lxqt-base/lxqt-runner-2.3.0

Description

LXQt quick launcher

Added to portage

2025-11-06

lxqt-session - 2.3.0
Ebuild name:

lxqt-base/lxqt-session-2.3.0

Description

LXQt Session Manager

Added to portage

2025-11-06

lxqt-sudo - 2.3.0
Ebuild name:

lxqt-base/lxqt-sudo-2.3.0

Description

LXQt GUI frontend for sudo

Added to portage

2025-11-06

lxqt-themes - 2.3.0
Ebuild name:

x11-themes/lxqt-themes-2.3.0

Description

LXQt Themes

Added to portage

2025-11-06

lxqt-wayland-session - 0.3.0
Ebuild name:

lxqt-base/lxqt-wayland-session-0.3.0

Description

LXQt Wayland Session Support

Added to portage

2025-11-06

mailcommon - 25.08.3
Ebuild name:

kde-apps/mailcommon-25.08.3

Description

Common mail library

Added to portage

2025-11-06

mailimporter - 25.08.3
Ebuild name:

kde-apps/mailimporter-25.08.3

Description

Library to import mail from various sources

Added to portage

2025-11-06

marble - 25.08.3
Ebuild name:

kde-apps/marble-25.08.3

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2025-11-06

markdownpart - 25.08.3
Ebuild name:

kde-misc/markdownpart-25.08.3

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2025-11-06

massif-visualizer - 25.08.3
Ebuild name:

dev-util/massif-visualizer-25.08.3

Description

Tool visualising massif data

Added to portage

2025-11-06

mbox-importer - 25.08.3
Ebuild name:

kde-apps/mbox-importer-25.08.3

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2025-11-06

merkuro - 25.08.3
Ebuild name:

app-office/merkuro-25.08.3

Description

Calendar application using Akonadi

Added to portage

2025-11-06

messagelib - 25.08.3
Ebuild name:

kde-apps/messagelib-25.08.3

Description

Libraries for messaging functions

Added to portage

2025-11-06

metakernel - 0.30.4
Ebuild name:

dev-python/metakernel-0.30.4

Description

Metakernel for Jupyter

Added to portage

2025-11-06

microsoft-edge - 142.0.3595.53
Ebuild name:

www-client/microsoft-edge-142.0.3595.53

Description

The web browser from Microsoft

Added to portage

2025-11-06

microsoft-edge-beta - 142.0.3595.53
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.53

Description

The web browser from Microsoft

Added to portage

2025-11-06

microsoft-edge-dev - 143.0.3650.3
Ebuild name:

www-client/microsoft-edge-dev-143.0.3650.3

Description

The web browser from Microsoft

Added to portage

2025-11-06

mimetreeparser - 25.08.3
Ebuild name:

kde-apps/mimetreeparser-25.08.3

Description

Libraries for messaging functions

Added to portage

2025-11-06

minuet - 25.08.3
Ebuild name:

kde-apps/minuet-25.08.3

Description

Music Education software by KDE

Added to portage

2025-11-06

mod_security - 2.9.12
Ebuild name:

www-apache/mod_security-2.9.12

Description

Application firewall and intrusion detection for Apache

Added to portage

2025-11-06

modsecurity-crs - 4.20.0
Ebuild name:

www-apache/modsecurity-crs-4.20.0

Description

OWASP ModSecurity Core Rule Set

Added to portage

2025-11-06

mqtree - 1.0.19
Ebuild name:

dev-erlang/mqtree-1.0.19

Description

Index tree for MQTT topic filters

Added to portage

2025-11-06

neochat - 25.08.3
Ebuild name:

net-im/neochat-25.08.3

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2025-11-06

nessus-agent-bin - 11.0.2
Ebuild name:

net-analyzer/nessus-agent-bin-11.0.2

Description

A remote security scanner for Linux - agent component

Added to portage

2025-11-06

nessus-bin - 10.10.1
Ebuild name:

net-analyzer/nessus-bin-10.10.1

Description

A remote security scanner for Linux

Added to portage

2025-11-06

nspr - 4.38
Ebuild name:

dev-libs/nspr-4.38

Description

Netscape Portable Runtime

Added to portage

2025-11-06

okular - 25.08.3
Ebuild name:

kde-apps/okular-25.08.3

Description

Universal document viewer based on KDE Frameworks

Added to portage

2025-11-06

opera - 123.0.5669.47
Ebuild name:

www-client/opera-123.0.5669.47

Description

A fast and secure web browser

Added to portage

2025-11-06

opera-developer - 125.0.5707.0
Ebuild name:

www-client/opera-developer-125.0.5707.0

Description

A fast and secure web browser

Added to portage

2025-11-06

p1_acme - 1.0.29
Ebuild name:

dev-erlang/p1_acme-1.0.29

Description

ACME client library for Erlang

Added to portage

2025-11-06

p1_pgsql - 1.1.36
Ebuild name:

dev-erlang/p1_pgsql-1.1.36

Description

Pure Erlang PostgreSQL driver

Added to portage

2025-11-06

p1_utils - 1.0.28
Ebuild name:

dev-erlang/p1_utils-1.0.28

Description

Erlang utility modules from ProcessOne

Added to portage

2025-11-06

palapeli - 25.08.3
Ebuild name:

kde-apps/palapeli-25.08.3

Description

Jigsaw puzzle game by KDE

Added to portage

2025-11-06

parley - 25.08.3
Ebuild name:

kde-apps/parley-25.08.3

Description

Vocabulary trainer to help you memorize things

Added to portage

2025-11-06

parseedn - 1.2.1
Ebuild name:

app-emacs/parseedn-1.2.1

Description

EDN parser for Emacs Lisp

Added to portage

2025-11-06

partitionmanager - 25.08.3
Ebuild name:

sys-block/partitionmanager-25.08.3

Description

Utility for management of disks, partitions and file systems

Added to portage

2025-11-06

pavucontrol-qt - 2.3.0
Ebuild name:

media-sound/pavucontrol-qt-2.3.0

Description

Qt GUI Pulseaudio Mixer

Added to portage

2025-11-06

pcmanfm-qt - 2.3.0
Ebuild name:

x11-misc/pcmanfm-qt-2.3.0

Description

Qt GUI Tabbed Filemanager

Added to portage

2025-11-06

pdf-tools - 1.1.0
Ebuild name:

app-emacs/pdf-tools-1.1.0

Description

Emacs Lisp support library for PDF documents

Added to portage

2025-11-06

persist - 0.6.1
Ebuild name:

app-emacs/persist-0.6.1

Description

Persist variables between Emacs sessions

Added to portage

2025-11-06

persist - 0.7
Ebuild name:

app-emacs/persist-0.7

Description

Persist variables between Emacs sessions

Added to portage

2025-11-06

persist - 0.8
Ebuild name:

app-emacs/persist-0.8

Description

Persist variables between Emacs sessions

Added to portage

2025-11-06

pfuture - 1.10.3
Ebuild name:

app-emacs/pfuture-1.10.3

Description

Simple wrapper around asynchronous processes

Added to portage

2025-11-06

php-mode - 1.27.0
Ebuild name:

app-emacs/php-mode-1.27.0

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-11-06

php-mode - 9999
Ebuild name:

app-emacs/php-mode-9999

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-11-06

picmi - 25.08.3
Ebuild name:

kde-apps/picmi-25.08.3

Description

Nonogram logic game by KDE

Added to portage

2025-11-06

pim-data-exporter - 25.08.3
Ebuild name:

kde-apps/pim-data-exporter-25.08.3

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2025-11-06

pim-sieve-editor - 25.08.3
Ebuild name:

kde-apps/pim-sieve-editor-25.08.3

Description

Assistant for editing IMAP Sieve filters

Added to portage

2025-11-06

pimcommon - 25.08.3
Ebuild name:

kde-apps/pimcommon-25.08.3

Description

Common PIM libraries

Added to portage

2025-11-06

pinentry - 0.1_p20250408
Ebuild name:

app-emacs/pinentry-0.1_p20250408

Description

GnuPG Pinentry server implementation for Emacs

Added to portage

2025-11-06

portage - 3.0.71
Ebuild name:

sys-apps/portage-3.0.71

Description

The package management and distribution system for Gentoo

Added to portage

2025-11-06

poxml - 25.08.3
Ebuild name:

kde-apps/poxml-25.08.3

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2025-11-06

pydantic - 2.12.4
Ebuild name:

dev-python/pydantic-2.12.4

Description

Data parsing and validation using Python type hints

Added to portage

2025-11-06

pyproject-fmt - 2.11.1
Ebuild name:

dev-python/pyproject-fmt-2.11.1

Description

Format your pyproject.toml file

Added to portage

2025-11-06

pytokens - 0.3.0
Ebuild name:

dev-python/pytokens-0.3.0

Description

A fast, spec compliant Python 3.13+ tokenizer that runs on older Pythons

Added to portage

2025-11-06

qps - 2.12.0
Ebuild name:

x11-misc/qps-2.12.0

Description

Qt GUI Process Manager

Added to portage

2025-11-06

qrca - 25.08.3
Ebuild name:

media-gfx/qrca-25.08.3

Description

Simple barcode scanner and QR code generator

Added to portage

2025-11-06

qterminal - 2.3.0
Ebuild name:

x11-terms/qterminal-2.3.0

Description

Qt-based multitab terminal emulator

Added to portage

2025-11-06

qtermwidget - 2.3.0
Ebuild name:

x11-libs/qtermwidget-2.3.0

Description

Qt terminal emulator widget

Added to portage

2025-11-06

qtxdg-tools - 4.3.0
Ebuild name:

app-misc/qtxdg-tools-4.3.0

Description

User Tools from libqtxdg

Added to portage

2025-11-06

rails - 8.1.1
Ebuild name:

dev-ruby/rails-8.1.1

Description

ruby on rails is a web-application and persistence framework

Added to portage

2025-11-06

railties - 8.1.1
Ebuild name:

dev-ruby/railties-8.1.1

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-11-06

rofi - 2.0.0
Ebuild name:

x11-misc/rofi-2.0.0

Description

A window switcher, run dialog and dmenu replacement

Added to portage

2025-11-06

rspec-mocks - 3.13.7
Ebuild name:

dev-ruby/rspec-mocks-3.13.7

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-11-06

scad-mode - 97.0
Ebuild name:

app-emacs/scad-mode-97.0

Description

GNU Emacs mode to edit OpenSCAD files

Added to portage

2025-11-06

screengrab - 3.1.0
Ebuild name:

x11-misc/screengrab-3.1.0

Description

Qt GUI Screenshot Utility

Added to portage

2025-11-06

signon-kwallet-extension - 25.08.3
Ebuild name:

kde-apps/signon-kwallet-extension-25.08.3

Description

KWallet extension for signond

Added to portage

2025-11-06

sigutils - 0.3.0_p20251029-r1
Ebuild name:

net-wireless/sigutils-0.3.0_p20251029-r1

Description

signal processing library for blind signal analysis and au

Added to portage

2025-11-06

skanlite - 25.08.3
Ebuild name:

kde-misc/skanlite-25.08.3

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2025-11-06

skanpage - 25.08.3
Ebuild name:

media-gfx/skanpage-25.08.3

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2025-11-06

skladnik - 25.08.3
Ebuild name:

games-puzzle/skladnik-25.08.3

Description

The Japanese warehouse keeper sokoban game

Added to portage

2025-11-06

squashfs-tools - 4.7.3
Ebuild name:

sys-fs/squashfs-tools-4.7.3

Description

Tools to create and extract Squashfs filesystems

Added to portage

2025-11-06

squid - 6.14-r1
Ebuild name:

net-proxy/squid-6.14-r1

Description

Full-featured web proxy cache

Added to portage

2025-11-06

step - 25.08.3
Ebuild name:

kde-apps/step-25.08.3

Description

Interactive physics simulator

Added to portage

2025-11-06

stringprep - 1.0.33
Ebuild name:

dev-erlang/stringprep-1.0.33

Description

Fast Stringprep implementation for Erlang and Elixir

Added to portage

2025-11-06

stripe - 13.2.0
Ebuild name:

dev-python/stripe-13.2.0

Description

Stripe Python bindings

Added to portage

2025-11-06

stun - 1.2.21
Ebuild name:

dev-erlang/stun-1.2.21

Description

STUN and TURN library for Erlang and Elixir

Added to portage

2025-11-06

svgpart - 25.08.3
Ebuild name:

kde-apps/svgpart-25.08.3

Description

Kpart for viewing SVGs

Added to portage

2025-11-06

sweeper - 25.08.3
Ebuild name:

kde-apps/sweeper-25.08.3

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2025-11-06

syd - 3.42.0
Ebuild name:

sys-apps/syd-3.42.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-11-06

texstudio - 4.8.9-r1
Ebuild name:

app-office/texstudio-4.8.9-r1

Description

Free cross-platform LaTeX editor (fork from texmakerX)

Added to portage

2025-11-06

thumbnailers - 25.08.3
Ebuild name:

kde-apps/thumbnailers-25.08.3

Description

Metapackage for KIO thumbnail generators

Added to portage

2025-11-06

tokodon - 25.08.3
Ebuild name:

net-im/tokodon-25.08.3

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2025-11-06

transmission - 4.1.0_beta3
Ebuild name:

net-p2p/transmission-4.1.0_beta3

Description

A fast, easy, and free BitTorrent client

Added to portage

2025-11-06

unbound - 1.24.1
Ebuild name:

net-dns/unbound-1.24.1

Description

A validating, recursive and caching DNS resolver

Added to portage

2025-11-06

xdg-desktop-portal-lxqt - 1.3.0
Ebuild name:

gui-libs/xdg-desktop-portal-lxqt-1.3.0

Description

Backend implementation for xdg-desktop-portal using Qt/KF5/l

Added to portage

2025-11-06

xfce4-screenshooter - 1.11.3
Ebuild name:

xfce-extra/xfce4-screenshooter-1.11.3

Description

Xfce4 screenshooter application and panel plugin

Added to portage

2025-11-06

xmpp - 1.11.2
Ebuild name:

dev-erlang/xmpp-1.11.2

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2025-11-06

yakuake - 25.08.3
Ebuild name:

kde-apps/yakuake-25.08.3

Description

Quake-style terminal emulator based on konsole

Added to portage

2025-11-06

yconf - 1.0.22
Ebuild name:

dev-erlang/yconf-1.0.22

Description

YAML configuration processor

Added to portage

2025-11-06

zanshin - 25.08.3
Ebuild name:

kde-misc/zanshin-25.08.3

Description

Getting things done application by KDE

Added to portage

2025-11-06

zlib - 3.2.2
Ebuild name:

dev-ruby/zlib-3.2.2

Description

Ruby interface for the zlib compression/decompression library

Added to portage

2025-11-06

zoom - 6.6.6.5306
Ebuild name:

net-im/zoom-6.6.6.5306

Description

Video conferencing and web conferencing service

Added to portage

2025-11-06

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 56.7 ms