summaryrefslogtreecommitdiff
path: root/x11-libs/libdlo/libdlo-0.1.2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-08-02 19:14:55 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-08-02 19:14:55 +0100
commitb24bd25253fe093f722ab576d29fdc41d04cb1ee (patch)
tree0fcf2afd9f852c4d4c291cf8afaa2c244d598105 /x11-libs/libdlo/libdlo-0.1.2.ebuild
parent121ed4eec41fbf03e1998d09eede1bf449da63b9 (diff)
gentoo resync : 02.08.2019
Diffstat (limited to 'x11-libs/libdlo/libdlo-0.1.2.ebuild')
-rw-r--r--x11-libs/libdlo/libdlo-0.1.2.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/x11-libs/libdlo/libdlo-0.1.2.ebuild b/x11-libs/libdlo/libdlo-0.1.2.ebuild
deleted file mode 100644
index cf803d91d789..000000000000
--- a/x11-libs/libdlo/libdlo-0.1.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="A fully open source driver which supports all DisplayLink devices"
-HOMEPAGE="https://libdlo.freedesktop.org/wiki/"
-SRC_URI="https://people.freedesktop.org/~berniet/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static-libs test-program"
-
-RDEPEND="virtual/libusb:0="
-
-DEPEND="${RDEPEND}"
-
-DOCS=( "AUTHORS" "ChangeLog" "Guide-v104.pdf" "README" )
-
-src_prepare() {
- default
-
- # AM_PROG_AR must be defined or automake will fail with:
- # archiver requires 'AM_PROG_AR' in 'configure.ac'.
- sed -i -e '/AC_PROG_CC/a AM_PROG_AR' configure.ac || die
-
- # Only build the Displaylink test program, if a user wants it.
- if ! use test-program; then
- eapply "${FILESDIR}"/disable-testprogram.patch
- fi
-
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable static-libs static)
-}
-
-src_install() {
- default
-
- # Rename the Displaylink test program to an useful name
- if use test-program; then
- mv "${D}"/usr/bin/test1 "${D}"/usr/bin/displaylink-test || die
- fi
-
- find "${D}" -name '*.la' -delete || die
-}