blob: e0c7918954691f1cf63dc9062df939fdf1e98c98 (
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
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Library for creating OpenSMTPD filters"
HOMEPAGE="https://imperialat.at/dev/libopensmtpd/"
SRC_URI="https://imperialat.at/releases/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-libs/libevent"
RDEPEND="${DEPEND}"
src_prepare() {
mv -f Makefile.gnu Makefile
eapply_user
}
src_compile() {
emake MANFORMAT="man"
}
src_install() {
emake DESTDIR="${D}" LIBDIR="/usr/$(get_libdir)" MANFORMAT="man" install
}
|