mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 14:38:43 +02: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>
31 lines
707 B
Bash
31 lines
707 B
Bash
# Copyright 2013-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
inherit autotools
|
|
|
|
MY_P="${P/_p/-}"
|
|
|
|
DESCRIPTION="Handwriting model files trained with Tomoe data"
|
|
HOMEPAGE="https://taku910.github.io/zinnia/ https://github.com/taku910/zinnia https://sourceforge.net/projects/zinnia/"
|
|
SRC_URI="https://downloads.sourceforge.net/zinnia/${MY_P}.tar.bz2"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ~ppc64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="app-i18n/zinnia"
|
|
DEPEND="${RDEPEND}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
DOCS=( AUTHORS )
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i "/^modeldir[[:space:]]*=/s/lib/$(get_libdir)/" Makefile.am || die
|
|
|
|
mv configure.{in,ac} || die
|
|
eautoreconf
|
|
}
|