diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2022-07-01 12:56:49 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2022-07-01 12:56:49 +0200 |
commit | 074bcd3fe7702e6ae1b62c38fdb62cd5d9acade7 (patch) | |
tree | 64f30d5b30a855edbb82373b62d4fdeab471e464 /media-libs/libmtp/libmtp-1.1.19-r2.ebuild | |
parent | net-analyzer/zabbix: bump to 4.0.42 (diff) | |
download | gentoo-074bcd3fe7702e6ae1b62c38fdb62cd5d9acade7.tar.gz gentoo-074bcd3fe7702e6ae1b62c38fdb62cd5d9acade7.tar.bz2 gentoo-074bcd3fe7702e6ae1b62c38fdb62cd5d9acade7.zip |
media-libs/libmtp: fixed doc installation path
Closes: https://bugs.gentoo.org/854810
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/libmtp/libmtp-1.1.19-r2.ebuild')
-rw-r--r-- | media-libs/libmtp/libmtp-1.1.19-r2.ebuild | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/media-libs/libmtp/libmtp-1.1.19-r2.ebuild b/media-libs/libmtp/libmtp-1.1.19-r2.ebuild new file mode 100644 index 000000000000..fd347a6888d2 --- /dev/null +++ b/media-libs/libmtp/libmtp-1.1.19-r2.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit udev + +if [[ ${PV} == 9999* ]]; then + EGIT_REPO_URI="https://git.code.sf.net/p/${PN}/code" + inherit autotools git-r3 +else + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86" +fi + +DESCRIPTION="Implementation of Microsoft's Media Transfer Protocol (MTP)" +HOMEPAGE="http://libmtp.sourceforge.net/" + +LICENSE="LGPL-2.1" # LGPL-2+ and LGPL-2.1+ ? +SLOT="0/9" # Based on SONAME of libmtp shared library +IUSE="+crypt doc examples static-libs" + +RDEPEND=" + acct-group/plugdev + virtual/libiconv + virtual/libusb:1 + crypt? ( dev-libs/libgcrypt:0= )" +DEPEND="${RDEPEND}" +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +DOCS=( AUTHORS README TODO ) + +PATCHES=( + "${FILESDIR}/${P}-fix-docdir.patch" +) + +src_prepare() { + default + + # ChangeLog says "RETIRING THIS FILE ..pause.. GIT" (Last entry from start of 2011) + rm ChangeLog || die + + if [[ ${PV} == 9999* ]]; then + if [[ -e /usr/share/gettext/config.rpath ]]; then + cp /usr/share/gettext/config.rpath . || die + else + touch config.rpath || die # This is from upstream autogen.sh + fi + eautoreconf + fi +} + +src_configure() { + local myeconfargs=( + $(use_enable crypt mtpz) + $(use_enable doc doxygen) + $(use_enable static-libs static) + --with-udev="$(get_udevdir)" + --with-udev-group=plugdev + --with-udev-mode=0660 + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${ED}" -name "*.la" -delete || die + + if use examples; then + docinto examples + dodoc examples/*.{c,h,sh} + fi +} + +pkg_postinst() { + udev_reload +} + +pkg_postrm() { + udev_reload +} |