gentoo/app-text/paps/paps-0.6.8-r2.ebuild
Lucio Sauer 794061a329
*/*: inline mirror://sourceforge
bump copyright of touched ebuilds to 2024

Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2024-04-30 20:21:05 +02:00

40 lines
783 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Unicode-aware text to PostScript converter"
HOMEPAGE="http://paps.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="x11-libs/pango"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-fix-as-needed-build.patch
"${FILESDIR}"/${P}-fix-doxygen-acinclude.patch
"${FILESDIR}"/${P}-fix-freetype-include.patch
"${FILESDIR}"/${P}-fix-empty-file.patch
)
src_prepare() {
default
mv configure.in configure.ac || die
eautoreconf
}
src_install() {
dobin src/paps
doman src/paps.1
dodoc AUTHORS ChangeLog NEWS README TODO
}