diff options
author | Sebastian Pipping <sping@gentoo.org> | 2018-09-27 21:29:00 +0200 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2018-09-29 17:42:14 +0200 |
commit | 49b2df058b20987d2211c708ae0cb20271cdf2bc (patch) | |
tree | 54aaceae2e65ef5cf75e3ebd5e54c0312ccd61b0 /media-libs/babl/babl-0.1.40.ebuild | |
parent | net-libs/libssh: Fix cmake warning (diff) | |
download | gentoo-49b2df058b20987d2211c708ae0cb20271cdf2bc.tar.gz gentoo-49b2df058b20987d2211c708ae0cb20271cdf2bc.tar.bz2 gentoo-49b2df058b20987d2211c708ae0cb20271cdf2bc.zip |
media-libs/babl: Remove old
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Diffstat (limited to 'media-libs/babl/babl-0.1.40.ebuild')
-rw-r--r-- | media-libs/babl/babl-0.1.40.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/media-libs/babl/babl-0.1.40.ebuild b/media-libs/babl/babl-0.1.40.ebuild deleted file mode 100644 index 1dd188cced9a..000000000000 --- a/media-libs/babl/babl-0.1.40.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils - -if [[ ${PV} == *9999* ]]; then - inherit autotools git-r3 - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/babl.git" - SRC_URI="" -else - SRC_URI="http://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -fi - -DESCRIPTION="A dynamic, any to any, pixel format conversion library" -HOMEPAGE="http://www.gegl.org/babl/" - -LICENSE="LGPL-3" -SLOT="0" -IUSE="altivec cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 cpu_flags_x86_mmx cpu_flags_x86_f16c" - -RDEPEND="" -DEPEND="${RDEPEND} - >=sys-devel/libtool-2.2 - virtual/pkgconfig -" - -src_prepare() { - default - [[ ${PV} == *9999* ]] && eautoreconf -} - -src_configure() { - # Automagic rsvg support is just for website generation we do not call, - # so we don't need to fix it - # w3m is used for dist target thus no issue for us that it is automagically - # detected - econf \ - --disable-docs \ - --disable-static \ - --disable-maintainer-mode \ - $(use_enable altivec) \ - $(use_enable cpu_flags_x86_f16c f16c) \ - $(use_enable cpu_flags_x86_mmx mmx) \ - $(use_enable cpu_flags_x86_sse sse) \ - $(use_enable cpu_flags_x86_sse2 sse2) \ - $(use_enable cpu_flags_x86_sse4_1 sse4_1) -} - -src_install() { - default - prune_libtool_files --all -} |