diff options
Diffstat (limited to 'x11-drivers/xf86-video-geode')
3 files changed, 0 insertions, 124 deletions
diff --git a/x11-drivers/xf86-video-geode/Manifest b/x11-drivers/xf86-video-geode/Manifest index 8f4e6701cc5c..60c30241040a 100644 --- a/x11-drivers/xf86-video-geode/Manifest +++ b/x11-drivers/xf86-video-geode/Manifest @@ -1,6 +1,3 @@ -AUX xf86-video-geode-2.11.20-fix-multiple-definition-of-linker-error.patch 2211 BLAKE2B ad3228a6c1d88f985949cd04940da5b3f45f2c284443c0bb538a44f75f8d479be1d64e8ed19a8953942c2ccb7996a55d6a490c1a1ab0f7f96bade79562dd16a5 SHA512 69d25f08a11c7897c7d870ae7f16977a55b7b678b0b3240d1626fe98638c7f76cfbb3f4d091436d4a984aeb3098e1635131c97be2025345bd18a90b82e3fb934 -DIST xf86-video-geode-2.11.20.tar.bz2 699973 BLAKE2B ed5c96a4ac41bb908239d89a49ef833a56fdeab62e441ddf36e32be1704a0850a2466a5538aafad87c83d3850339b0bdf0610851a17e3f4ace5eefab20c82296 SHA512 a67376ec174c544256aef693590d515742199c2acf1a54117207f599e1d9f70a3fb70c9c811ebc3f907dfa795e0e662a1c1f18673774660f0d5f3c757e848f0d DIST xf86-video-geode-2.11.21.tar.xz 582492 BLAKE2B a6a970284033497dbf359b1d9735d143476e96eca68560b68a49477af704ee9c9ef952b8ee144fc545cc88baf95cc4b34b8eb8a76efb3b9282bec1799d986f19 SHA512 e12f74268ab7d16b57644a9465b4be1ca28d250625a31b8810e19a1f94a17e47e0a258455155fd8f336fa59fd78160cdf3763aa94b85c6ccc2c42edf3b65bc61 -EBUILD xf86-video-geode-2.11.20.ebuild 451 BLAKE2B 0674b9fb9d56a57b003e54d23e3e27e341b5ec2dab7456da826c9dcedb1c06e4e9045ba400d5012f38634270991bb189666f03bc7f2a10a5f735c47181f5126d SHA512 28573ca325743a0552c19fc6ab3aa7d7b81a20bc70febf6f518e0b9d9aa0aeb150fa4e86356f7913274785c9334d9facb563f6f41ca5bf4a2206b300b9c68866 EBUILD xf86-video-geode-2.11.21.ebuild 396 BLAKE2B e2f8815a9b1033b027e89d7dc34de13fd2f5e1a01a6d6bd34b797f17a891a017765b4c435538c393d1d4861f83130f1ad6dec9b2fb7960d0b7f34136b85f4005 SHA512 cb0d309f52cbd060c0bc9c3e449b1a6d8f6b1a02b12f200c372b43784e72a98133934639b87fde9c624d3a184e356b76604d279a70f1b3f5d77b602a6ca3f8c8 MISC metadata.xml 511 BLAKE2B 194193137efc8f608a9fd5be7d991b34c46c46f54e9c01fc1e2cb19e607f3784442095724cdd3aaa1914da2c8ceae55ad8e78b8549f32fbd9ff1588b75bedc3e SHA512 a7c3f53f29d7a8f89b79c748d84a6d69bc3f4ea58827d6b708d8dec29e02055792eb096d10bb236c5072e16e4f961a88a998845123486ffee96f0817af2bfb63 diff --git a/x11-drivers/xf86-video-geode/files/xf86-video-geode-2.11.20-fix-multiple-definition-of-linker-error.patch b/x11-drivers/xf86-video-geode/files/xf86-video-geode-2.11.20-fix-multiple-definition-of-linker-error.patch deleted file mode 100644 index 5bacc0cfbc8d..000000000000 --- a/x11-drivers/xf86-video-geode/files/xf86-video-geode-2.11.20-fix-multiple-definition-of-linker-error.patch +++ /dev/null @@ -1,93 +0,0 @@ -From ba63bf6821c40707237ad2e7a13352a537e5b588 Mon Sep 17 00:00:00 2001 -From: Christian Gmeiner <christian.gmeiner@gmail.com> -Date: Thu, 3 Dec 2020 14:22:23 +0100 -Subject: [PATCH] fix 'multiple definition of' linker error - -Fix for FTBFS due to -fno-common on GCC 10. - -Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> ---- - src/geode.h | 8 ++++---- - src/gx_driver.c | 2 +- - src/gx_video.c | 2 +- - src/lx_driver.c | 2 +- - 4 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/src/geode.h b/src/geode.h -index eb61c28..1b144ff 100644 ---- a/src/geode.h -+++ b/src/geode.h -@@ -343,7 +343,7 @@ typedef struct _geodeRec { - - /* option flags are self-explanatory */ - #ifdef HAVE_LX --enum { -+enum LX_GeodeOpts { - LX_OPTION_SW_CURSOR, - LX_OPTION_HW_CURSOR, - LX_OPTION_NOCOMPRESSION, -@@ -357,11 +357,11 @@ enum { - LX_OPTION_FBSIZE, - LX_OPTION_PANEL_MODE, - LX_OPTION_DONT_PROGRAM --} LX_GeodeOpts; -+}; - #endif - - #ifdef HAVE_GX --enum { -+enum GX_GeodeOpts { - GX_OPTION_SW_CURSOR, - GX_OPTION_HW_CURSOR, - GX_OPTION_NOCOMPRESSION, -@@ -378,7 +378,7 @@ enum { - GX_OPTION_FBSIZE, - GX_OPTION_PANEL_GEOMETRY, - GX_OPTION_DONT_PROGRAM --} GX_GeodeOpts; -+}; - #endif - - /* geode_dcon.c */ -diff --git a/src/gx_driver.c b/src/gx_driver.c -index 4de336e..188828c 100644 ---- a/src/gx_driver.c -+++ b/src/gx_driver.c -@@ -78,7 +78,7 @@ - - extern OptionInfoRec GX_GeodeOptions[]; - --unsigned char *XpressROMPtr; -+extern unsigned char *XpressROMPtr; - - static inline void - gx_enable_dac_power(void) -diff --git a/src/gx_video.c b/src/gx_video.c -index 0d3e1c5..7964d17 100644 ---- a/src/gx_video.c -+++ b/src/gx_video.c -@@ -112,7 +112,7 @@ void GXSetVideoPosition(int x, int y, int width, int height, - - extern void GXAccelSync(ScrnInfoPtr pScrni); - --int DeltaX, DeltaY; -+extern int DeltaX, DeltaY; - - unsigned long graphics_lut[256]; - static int lutflag = 0; -diff --git a/src/lx_driver.c b/src/lx_driver.c -index 47f6875..9cb8889 100644 ---- a/src/lx_driver.c -+++ b/src/lx_driver.c -@@ -74,7 +74,7 @@ - - extern OptionInfoRec LX_GeodeOptions[]; - --unsigned char *XpressROMPtr; -+extern unsigned char *XpressROMPtr; - - static Bool - LXSaveScreen(ScreenPtr pScrn, int mode) --- -2.26.2 - diff --git a/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild b/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild deleted file mode 100644 index be974bd039dd..000000000000 --- a/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.20.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xorg-3 - -DESCRIPTION="AMD Geode GX2 and LX video driver" - -KEYWORDS="x86" -IUSE="ztv" - -RDEPEND="" -DEPEND="${RDEPEND} - ztv? ( - sys-kernel/linux-headers - )" - -PATCHES=( - "${FILESDIR}"/${P}-fix-multiple-definition-of-linker-error.patch -) - -src_configure() { - local XORG_CONFIGURE_OPTIONS=( - $(use_enable ztv) - ) - xorg-3_src_configure -} |