mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -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>
40 lines
783 B
Bash
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
|
|
}
|