app-admin/passgen-il - 1.5-r1 (illogician-overlay)

Search

Install

Install this version:

emerge -a =app-admin/passgen-il-1.5-r1

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-admin/passgen-il-1.5-r1

Or alternatively:

emerge --autounmask-write -a =app-admin/passgen-il-1.5-r1

Package Information

Description:
A password generator that's easy to use
Homepage:
https://codeberg.org/illogician/passgen-il
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
1.5-r1 8 amd64 0
View Raw Ebuild
# Copyright 2025-2026 illogician <illogician@tutamail.com>
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit flag-o-matic go-module desktop


DESCRIPTION="A password generator that's easy to use"
HOMEPAGE="https://codeberg.org/illogician/passgen-il"
SRC_URI="https://codeberg.org/illogician/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://codeberg.org/illogician/illogician-overlay/raw/branch/main/app-admin/passgen-il/${PN}-1.5-vendor.tar.xz"
S="${WORKDIR}/${PN}"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
IUSE="+gui"

BDEPEND="dev-lang/go
		gui? (
		sys-devel/gcc
		x11-libs/gtk+:3
		dev-util/pkgconf
		)"

src_unpack() {
	default
}

src_prepare() {
	default
	use !gui && sed -i /flagged/d main.go
	ego build -x
}

src_install() {
	dobin passgen-il
	use gui && doicon ${S}/misc/passgen-il-lock.svg
	use gui && domenu ${S}/misc/${PN}.desktop
}

USE Flags

Manage flags for this package: euse -i <flag> -p app-admin/passgen-il | euse -E <flag> -p app-admin/passgen-il | euse -D <flag> -p app-admin/passgen-il

Global/Standard Flags

gui
Default: Enabled (+)

Inherited Eclasses

Dependencies

BDEPEND

dev-lang/go
		gui? (
		sys-devel/gcc
		x11-libs/gtk+:3
		dev-util/pkgconf
		)