2020-11-16 08:50:53 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2017-04-06 09:01:22 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-11-16 08:50:53 +03:00
|
|
|
EAPI=7
|
2017-04-06 09:01:22 +03:00
|
|
|
|
|
|
|
DESCRIPTION="LIBDSK is a library for accessing discs and disc image files"
|
|
|
|
HOMEPAGE="http://www.seasip.info/Unix/LibDsk/"
|
|
|
|
SRC_URI="http://www.seasip.info/Unix/LibDsk/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2018-05-10 00:04:20 +03:00
|
|
|
KEYWORDS="amd64"
|
2017-04-06 09:01:22 +03:00
|
|
|
IUSE="doc"
|
|
|
|
|
2020-11-16 08:50:53 +03:00
|
|
|
PATCHES=( "${FILESDIR}"/${P}-include-sysmacros.patch )
|
|
|
|
DOCS=( doc/${PN}.{txt,pdf} )
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf --disable-static
|
2018-01-29 10:13:19 +03:00
|
|
|
}
|
|
|
|
|
2017-04-06 09:01:22 +03:00
|
|
|
src_install() {
|
2020-11-16 08:50:53 +03:00
|
|
|
default
|
|
|
|
find "${ED}" -name '*.la' -delete || die
|
2017-04-06 09:01:22 +03:00
|
|
|
}
|