summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2016-08-18 15:49:15 +0200
committerLars Wendler <polynomial-c@gentoo.org>2016-08-18 15:49:33 +0200
commit74c27b598d9a66ba77f0b9757d023a126981b13c (patch)
treeb8535bb18524db4abba4f660ed9ee64d6e8ef30a /media-libs/libmtp/libmtp-1.1.8.ebuild
parentmedia-libs/libmtp: Bump to version 1.1.12 (bug #591612). (diff)
downloadgentoo-74c27b598d9a66ba77f0b9757d023a126981b13c.tar.gz
gentoo-74c27b598d9a66ba77f0b9757d023a126981b13c.tar.bz2
gentoo-74c27b598d9a66ba77f0b9757d023a126981b13c.zip
media-libs/libmtp: Removed old.
Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'media-libs/libmtp/libmtp-1.1.8.ebuild')
-rw-r--r--media-libs/libmtp/libmtp-1.1.8.ebuild74
1 files changed, 0 insertions, 74 deletions
diff --git a/media-libs/libmtp/libmtp-1.1.8.ebuild b/media-libs/libmtp/libmtp-1.1.8.ebuild
deleted file mode 100644
index d2a84774bdb5..000000000000
--- a/media-libs/libmtp/libmtp-1.1.8.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-if [[ ${PV} == 9999* ]]; then
- EGIT_REPO_URI="git://git.code.sf.net/p/${PN}/code"
- inherit autotools git-r3
-else
- SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
- KEYWORDS="amd64 ~arm hppa ia64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd"
-fi
-
-inherit eutils udev user
-
-DESCRIPTION="An 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="virtual/libusb:1
- crypt? ( >=dev-libs/libgcrypt-1.5.4:0= )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )"
-
-pkg_setup() {
- DOCS="AUTHORS README TODO"
- enewgroup plugdev
-}
-
-src_unpack() {
- [[ ${PV} == 9999* ]] && git-r3_src_unpack
- default_src_unpack
-}
-
-src_prepare() {
- # ChangeLog says "RETIRING THIS FILE ..pause.. GIT" (Last entry from start of 2011)
- rm -f ChangeLog
-
- if [[ ${PV} == 9999* ]]; then
- local crpthf=config.rpath
- local crpthd=/usr/share/gettext/${crpthf}
- if has_version '>sys-devel/gettext-0.18.3' && [[ -e ${crpthd} ]]; then
- cp "${crpthd}" .
- else
- touch ${crpthf} # This is from upstream autogen.sh
- fi
- eautoreconf
- fi
-}
-
-src_configure() {
- econf \
- $(use_enable static-libs static) \
- $(use_enable doc doxygen) \
- $(use_enable crypt mtpz) \
- --with-udev="$(get_udevdir)" \
- --with-udev-group=plugdev \
- --with-udev-mode=0660
-}
-
-src_install() {
- default
- prune_libtool_files --all
-
- if use examples; then
- docinto examples
- dodoc examples/*.{c,h,sh}
- fi
-}