mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08: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>
59 lines
1.3 KiB
Bash
59 lines
1.3 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools toolchain-funcs
|
|
|
|
DESCRIPTION="Dialer Without a Useful Name (DWUN)"
|
|
HOMEPAGE="http://dwun.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT GPL-2" # GPL-2 only for init script
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 x86"
|
|
|
|
RDEPEND="virtual/libcrypt:="
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( AUTHORS ChangeLog QUICKSTART README TODO UPGRADING )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-fno-common.patch
|
|
"${FILESDIR}"/${P}-rename-configure.patch
|
|
"${FILESDIR}"/${P}-implicit-function-declarations.patch
|
|
"${FILESDIR}"/${P}-respect-AR.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i -e "s:TODO QUICKSTART README UPGRADING ChangeLog COPYING AUTHORS::" Makefile.in || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
|
|
econf --with-docdir="share/doc/${PF}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
insinto /etc
|
|
newins doc/examples/complete-rcfile dwunrc
|
|
newins debian/dwunauth dwunauth
|
|
newinitd "${FILESDIR}/dwun" dwun
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog
|
|
elog 'Make sure you have "net-dialup/ppp" merged if you intend to use dwun'
|
|
elog "to control a standard PPP network link."
|
|
elog "See /usr/share/doc/${P}/QUICKSTART for instructions on"
|
|
elog "configuring dwun."
|
|
elog
|
|
}
|