mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-11 07:44:12 +02:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
25 lines
594 B
Bash
25 lines
594 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="\"su\" wrapper which transfers X credentials"
|
|
HOMEPAGE="http://fgouget.free.fr/sux/sux-readme.shtml"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~arm64 ppc sparc x86"
|
|
|
|
RDEPEND="x11-apps/xauth"
|
|
DEPEND="${RDEPEND}"
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.0-xauth-and-home.patch
|
|
)
|
|
|
|
src_install() {
|
|
dobin ${PN}{,term}
|
|
dodoc TODO
|
|
newdoc debian/changelog Debian.changelog
|
|
doman debian/${PN}{,term}.1
|
|
}
|