summaryrefslogtreecommitdiff
path: root/net-mail/randomsig/randomsig-1.10.0-r1.ebuild
blob: 433e05933e0fb1f083facc7e7d59fcc3b2c8b728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

MY_P="${PN}-v${PV}"

DESCRIPTION="Perl script for generating random .signature files"
HOMEPAGE="https://suso.suso.org/xulu/Randomsig"
SRC_URI="https://suso.suso.org/programs/randomsig/downloads/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~s390 ~sparc ~x86"

RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}"

src_prepare() {
	default

	sed -e "s:/usr/local/bin:${EPREFIX}/usr/bin:" \
		-e "s:/usr/local/etc:${EPREFIX}/etc:" \
		-i Makefile || die
	sed -e "s:/usr/local/etc:${EPREFIX}/etc:" \
		-i randomsig || die
}

src_install() {
	dobin randomsig
	einstalldocs

	insinto /etc/randomsig
	doins .randomsigrc .sigquotes .sigcancel .sigread
}