70 lines
1.5 KiB
Bash
70 lines
1.5 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools desktop
|
|
|
|
DESCRIPTION="Smith charting program, mainly designed for educational use"
|
|
HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="doc examples"
|
|
|
|
RDEPEND="
|
|
x11-libs/gtk+:2
|
|
dev-libs/libxml2:2
|
|
dev-libs/glib:2
|
|
dev-libs/atk
|
|
gnome-base/libgnome
|
|
gnome-base/libgnomecanvas
|
|
gnome-base/libgnomeui"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
DOCS=( AUTHORS ChangeLog NEWS NOTES README THANKS TODO )
|
|
|
|
src_prepare() {
|
|
eapply_user
|
|
|
|
# This patch is to prevent make install copying
|
|
# the examples in /usr/share/linsmith
|
|
# Now they are cp to the correct location.
|
|
eapply -p0 "${FILESDIR}"/${PN}-datafiles.patch
|
|
|
|
# fix QA warnings about wrong categories and location of icon file
|
|
# in .desktop file
|
|
sed -i -e "s/Application;Engineering;/Education;Science;Electronics;/" \
|
|
-e "s/Encoding=/#Encoding=/" \
|
|
-e "s#pixmaps/linsmith/l#pixmaps/l#" \
|
|
${PN}.desktop || die
|
|
|
|
# fix QA warnings about 'maintainer mode'
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
|
|
insinto "/usr/share/${PN}"
|
|
doins datafiles/conv0809
|
|
|
|
einstalldocs
|
|
doman doc/${PN}.1
|
|
|
|
domenu ${PN}.desktop
|
|
doicon ${PN}_icon.xpm
|
|
|
|
if use doc; then
|
|
insinto "/usr/share/doc/${PF}"
|
|
doins doc/manual.pdf
|
|
fi
|
|
|
|
if use examples; then
|
|
insinto "/usr/share/doc/${PF}/examples"
|
|
doins datafiles/*.circ datafiles/*.load || die
|
|
fi
|
|
}
|