From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2C9F1382C5 for ; Thu, 24 May 2018 00:42:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F60EE0871; Thu, 24 May 2018 00:42:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0E141E0871 for ; Thu, 24 May 2018 00:42:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78B1B335C72 for ; Thu, 24 May 2018 00:42:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5987B2B3 for ; Thu, 24 May 2018 00:42:07 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527122507.ff63a85936b7af7b3d6de1314890f7a020d6a12e.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/svgalib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/svgalib/svgalib-1.9.25-r4.ebuild X-VCS-Directories: media-libs/svgalib/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: ff63a85936b7af7b3d6de1314890f7a020d6a12e X-VCS-Branch: master Date: Thu, 24 May 2018 00:42:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0bb55931-5771-4d8f-946a-d8ef28675e3f X-Archives-Hash: fe81dca002c5e99137e94724a4d5ab7f commit: ff63a85936b7af7b3d6de1314890f7a020d6a12e Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon May 21 08:06:22 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu May 24 00:41:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff63a859 media-libs/svgalib: remove old Closes: https://github.com/gentoo/gentoo/pull/8506 media-libs/svgalib/svgalib-1.9.25-r4.ebuild | 129 ---------------------------- 1 file changed, 129 deletions(-) diff --git a/media-libs/svgalib/svgalib-1.9.25-r4.ebuild b/media-libs/svgalib/svgalib-1.9.25-r4.ebuild deleted file mode 100644 index 3896ddd8506..00000000000 --- a/media-libs/svgalib/svgalib-1.9.25-r4.ebuild +++ /dev/null @@ -1,129 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils flag-o-matic toolchain-funcs linux-mod - -DESCRIPTION="A library for running svga graphics on the console" -HOMEPAGE="http://www.svgalib.org/" -SRC_URI="http://www.arava.co.il/matan/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="-* x86" -IUSE="build +kernel-helper" - -DEPEND="" -RDEPEND="" - -MODULE_NAMES="svgalib_helper(misc:${S}/kernel/svgalib_helper)" -BUILD_TARGETS="default" - -pkg_setup() { - linux-mod_pkg_setup - BUILD_PARAMS="KDIR=${KV_OUT_DIR}" -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.9.25-linux_2.6.patch - epatch "${FILESDIR}"/${PN}-1.9.19-pic.patch #51698 - epatch "${FILESDIR}"/${PN}-1.9.25-build.patch - epatch "${FILESDIR}"/${PN}-1.9.25-linux_2.6.28.patch - epatch "${FILESDIR}"/${PN}-1.9.25-glibc210.patch #274305 - epatch "${FILESDIR}"/${PN}-1.9.25-linux_2.6.36-r1.patch - epatch "${FILESDIR}"/${PN}-1.9.25-fix_buffer.patch - epatch "${FILESDIR}"/${PN}-1.9.25-vga_reset.patch - epatch "${FILESDIR}"/${PN}-1.9.25-missing_include.patch - epatch "${FILESDIR}"/${PN}-1.9.25-linux_3.4.patch - epatch "${FILESDIR}"/${PN}-1.9.25-linux_3.9.patch #557052 - sed -i -e '/linux\/smp_lock.h/d' kernel/svgalib_helper/main.c || die -} - -src_compile() { - use kernel-helper || export NO_HELPER=y - - export CC=$(tc-getCC) - - # First build static - emake OPTIMIZE="${CFLAGS}" static || die "Failed to build static libraries!" - # Then build shared ... - emake OPTIMIZE="${CFLAGS}" shared || die "Failed to build shared libraries!" - # Missing in some cases ... - ln -s libvga.so.${PV} sharedlib/libvga.so - # Build lrmi and tools ... - emake OPTIMIZE="${CFLAGS}" LDFLAGS+=" -L../sharedlib" \ - textutils lrmi utils \ - || die "Failed to build libraries and utils!" - # Build the gl stuff tpp - emake OPTIMIZE="${CFLAGS}" -C gl || die "Failed to build gl!" - emake OPTIMIZE="${CFLAGS}" -C gl libvgagl.so.${PV} \ - || die "Failed to build libvgagl.so.${PV}!" - # Missing in some cases ... - ln -s libvgagl.so.${PV} sharedlib/libvgagl.so - emake OPTIMIZE="${CFLAGS}" -C src libvga.so.${PV} \ - || die "Failed to build libvga.so.${PV}!" - cp -pPR src/libvga.so.${PV} sharedlib/ - # Build threeDKit ... - emake OPTIMIZE="${CFLAGS}" LDFLAGS+=" -L../sharedlib" \ - -C threeDKit lib3dkit.a || die "Failed to build threeDKit!" - # Build demo's ... - emake OPTIMIZE="${CFLAGS} -I../gl" LDFLAGS+=" -L../sharedlib" \ - demoprogs || die "Failed to build demoprogs!" - - ! use build && use kernel-helper && linux-mod_src_compile -} - -src_install() { - local x= - - dodir /etc/svgalib /usr/{include,lib,bin,share/man} - - emake \ - TOPDIR="${D}" OPTIMIZE="${CFLAGS}" INSTALLMODULE="" \ - install || die "Failed to install svgalib!" - ! use build && use kernel-helper && linux-mod_src_install - - insinto /usr/include - doins gl/vgagl.h - dolib.a staticlib/libvga.a || die "dolib.a libvga" - dolib.a gl/libvgagl.a || die "dolib.a libvgagl" - dolib.a threeDKit/lib3dkit.a - dolib.so gl/libvgagl.so.${PV} || die "dolib.so libvgagl.so" - local abiver=$(sed -n '/^MAJOR_VER.*=/{s:.*=[ ]*::;p}' Makefile.cfg) - for x in lib3dkit libvga libvgagl ; do - dosym ${x}.so.${PV} /usr/lib/${x}.so - dosym ${x}.so.${PV} /usr/lib/${x}.so.${abiver} - done - - insinto /usr/include - doins src/vga.h gl/vgagl.h src/mouse/vgamouse.h src/joystick/vgajoystick.h - doins src/keyboard/vgakeyboard.h kernel/svgalib_helper/svgalib_helper.h - - insinto /lib/udev/rules.d - newins "${FILESDIR}"/svgalib.udev.rules.d.2 30-svgalib.rules - - exeinto /usr/lib/svgalib/demos - for x in "${S}"/demos/* ; do - [[ -x ${x} ]] && doexe ${x} - done - - cd "${S}"/threeDKit - exeinto /usr/lib/svgalib/threeDKit - local THREED_PROGS="plane wrapdemo" - doexe ${THREED_PROGS} - - cd "${S}" - dodoc 0-README - cd "${S}"/doc - dodoc CHANGES DESIGN TODO - docinto txt - dodoc Driver-programming-HOWTO add_driver svgalib.lsm \ - README.{joystick,keymap,multi-monitor,patching,vesa} - # avoid installation of a broken symlink - newdoc ../lrmi-0.6m/README README.lrmi -} - -pkg_postinst() { - ! use build && use kernel-helper && linux-mod_pkg_postinst -}