diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-04-12 03:49:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-04-12 03:49:52 +0000 |
commit | 6e70991ba0461de41572c788c4e9e53192738caa (patch) | |
tree | c4dff543372cc1f874915799b2bcc047ad56604b /dev-libs/DirectFB | |
parent | clean out old versions (diff) | |
download | gentoo-2-6e70991ba0461de41572c788c4e9e53192738caa.tar.gz gentoo-2-6e70991ba0461de41572c788c4e9e53192738caa.tar.bz2 gentoo-2-6e70991ba0461de41572c788c4e9e53192738caa.zip |
clean old
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'dev-libs/DirectFB')
-rw-r--r-- | dev-libs/DirectFB/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/DirectFB/DirectFB-0.9.25.1.ebuild | 126 | ||||
-rw-r--r-- | dev-libs/DirectFB/files/DirectFB-0.9.25.1-headers.patch | 84 |
3 files changed, 5 insertions, 211 deletions
diff --git a/dev-libs/DirectFB/ChangeLog b/dev-libs/DirectFB/ChangeLog index 7514595496b3..d1b299dc9751 100644 --- a/dev-libs/DirectFB/ChangeLog +++ b/dev-libs/DirectFB/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/DirectFB # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB/ChangeLog,v 1.81 2009/04/11 16:11:43 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB/ChangeLog,v 1.82 2009/04/12 03:49:51 mr_bones_ Exp $ + + 12 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org> + -files/DirectFB-0.9.25.1-headers.patch, -DirectFB-0.9.25.1.ebuild: + clean old 11 Apr 2009; nixnut <nixnut@gentoo.org> DirectFB-1.2.6.ebuild, DirectFB-1.2.7.ebuild: diff --git a/dev-libs/DirectFB/DirectFB-0.9.25.1.ebuild b/dev-libs/DirectFB/DirectFB-0.9.25.1.ebuild deleted file mode 100644 index cd850bfa947d..000000000000 --- a/dev-libs/DirectFB/DirectFB-0.9.25.1.ebuild +++ /dev/null @@ -1,126 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB/DirectFB-0.9.25.1.ebuild,v 1.13 2007/03/20 03:29:19 vapier Exp $ - -inherit eutils flag-o-matic toolchain-funcs - -IUSE_VIDEO_CARDS="ati128 cle266 cyber5k i810 i830 mach64 matrox neomagic nsc nvidia radeon savage sis315 tdfx unichrome" -IUSE_INPUT_DEVICES="dbox2remote elo-input gunze h3600_ts joystick keyboard dreamboxremote linuxinput lirc mutouch none permount ps2mouse serialmouse sonypijogdial wm97xx" - -DESCRIPTION="Thin library on top of the Linux framebuffer devices" -HOMEPAGE="http://www.directfb.org/" -SRC_URI="http://www.directfb.org/download/DirectFB/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 -mips ppc sh -sparc x86" -IUSE="debug fbcon fusion gif jpeg mmx mpeg png sdl sse sysfs truetype v4l v4l2 zlib" - -# fusion? ( dev-libs/linux-fusion ) -DEPEND="sdl? ( media-libs/libsdl ) - gif? ( media-libs/giflib ) - png? ( media-libs/libpng ) - jpeg? ( media-libs/jpeg ) - mpeg? ( media-libs/libmpeg3 ) - sysfs? ( sys-fs/sysfsutils ) - zlib? ( sys-libs/zlib ) - truetype? ( >=media-libs/freetype-2.0.1 )" - -pkg_setup() { - if [[ -z ${VIDEO_CARDS} ]] ; then - ewarn "All video drivers will be built since you did not specify" - ewarn "via the VIDEO_CARDS variable what video card you use." - ewarn "DirectFB supports: ${IUSE_VIDEO_CARDS} all none" - echo - fi - if [[ -z ${INPUT_DEVICES} ]] ; then - ewarn "All input drivers will be built since you did not specify" - ewarn "via the INPUT_DEVICES variable which input drivers to use." - ewarn "DirectFB supports: ${IUSE_INPUT_DEVICES} all none" - echo - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-0.9.24-CFLAGS.patch - epatch "${FILESDIR}"/${P}-headers.patch -} - -src_compile() { - # force disable wm97xx #36924 -# export ac_cv_header_linux_wm97xx_h=no - # force disable of sis315 #77391 -# export ac_cv_header_linux_sisfb_h=no - - local vidcards card input inputdrivers - for card in ${VIDEO_CARDS} ; do - has ${card} ${IUSE_VIDEO_CARDS} && vidcards="${vidcards},${card}" - #use video_cards_${card} && vidcards="${vidcards},${card}" - done - [[ -z ${vidcards} ]] \ - && vidcards="all" \ - || vidcards=${vidcards:1} - for input in ${INPUT_DEVICES} ; do - has ${input} ${IUSE_INPUT_DEVICES} && inputdrivers="${inputdrivers},${input}" - #use input_devics_${input} && inputdrivers="${inputdrivers},${input}" - done - [[ -z ${inputdrivers} ]] \ - && inputdrivers="all" \ - || inputdrivers=${inputdrivers:1} - - local sdlconf="--disable-sdl" - if use sdl ; then - # since SDL can link against DirectFB and trigger a - # dependency loop, only link against SDL if it isn't - # broken #61592 - echo 'int main(){}' > sdl-test.c - $(tc-getCC) sdl-test.c -lSDL 2>/dev/null \ - && sdlconf="--enable-sdl" \ - || ewarn "Disabling SDL since libSDL.so is broken" - fi - - use mpeg && export CPPFLAGS="${CPPFLAGS} -I/usr/include/libmpeg3" - econf \ - --enable-static \ - $(use_enable fbcon fbdev) \ - $(use_enable mmx) \ - $(use_enable sse) \ - $(use_enable mpeg libmpeg3) \ - $(use_enable jpeg) \ - $(use_enable png) \ - $(use_enable gif) \ - $(use_enable truetype freetype) \ - $(use_enable fusion multi) \ - $(use_enable debug) \ - $(use_enable sysfs) \ - $(use_enable zlib) \ - $(use_enable v4l video4linux) \ - $(use_enable v4l2 video4linux2) \ - ${sdlconf} \ - --with-gfxdrivers="${vidcards}" \ - --with-inputdrivers="${inputdrivers}" \ - --disable-vnc \ - || die - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc fb.modes AUTHORS ChangeLog NEWS README* TODO - dohtml -r docs/html/* -} - -pkg_postinst() { - ewarn "Each DirectFB update in the 0.9.xx series" - ewarn "breaks DirectFB related applications." - ewarn "Please run \"revdep-rebuild\" which can be" - ewarn "found by emerging the package 'gentoolkit'." - ewarn - ewarn "If you have an ALPS touchpad, then you might" - ewarn "get your mouse unexpectedly set in absolute" - ewarn "mode in all DirectFB applications." - ewarn "This can be fixed by removing linuxinput from" - ewarn "INPUT_DEVICES." -} diff --git a/dev-libs/DirectFB/files/DirectFB-0.9.25.1-headers.patch b/dev-libs/DirectFB/files/DirectFB-0.9.25.1-headers.patch deleted file mode 100644 index b0e031f96081..000000000000 --- a/dev-libs/DirectFB/files/DirectFB-0.9.25.1-headers.patch +++ /dev/null @@ -1,84 +0,0 @@ -Don't rely on the kernel to tell us what the cpu target is ... we'll just -use the default values all the time instead. - -http://bugs.gentoo.org/152614 - ---- lib/direct/ppcasm_memcpy_cachable.S -+++ lib/direct/ppcasm_memcpy_cachable.S -@@ -34,8 +34,6 @@ - - #define __ASSEMBLY__ - --#include <linux/config.h> -- - #if defined(CONFIG_8xx) || defined(CONFIG_403GCX) - #define L1_CACHE_LINE_SIZE 16 - #define LG_L1_CACHE_LINE_SIZE 4 - -Don't pollute the namespace with type hacks, just use the real deal. - ---- include/dfb_types.h -+++ include/dfb_types.h -@@ -1,32 +1,7 @@ - #ifndef __DFB_TYPES_H__ - #define __DFB_TYPES_H__ - -+#include <asm/types.h> - #include <sys/types.h> - --#ifndef USE_KOS -- --#define __u8 u_int8_t --#define __u16 u_int16_t --#define __u32 u_int32_t --#define __u64 u_int64_t -- --#define __s8 int8_t --#define __s16 int16_t --#define __s32 int32_t --#define __s64 int64_t -- --#else -- --#define __u8 uint8 --#define __u16 uint16 --#define __u32 uint32 --#define __u64 uint64 -- --#define __s8 sint8 --#define __s16 sint16 --#define __s32 sint32 --#define __s64 sint64 -- --#endif -- - #endif - -some arches (*cough* powerpc *cough*) are retarded and export a completely -worthless asm/page.h ... so set a fallback for PAGE_SIZE - ---- lib/direct/system.c -+++ lib/direct/system.c -@@ -35,7 +35,8 @@ - - #if HAVE_ASM_PAGE_H - #include <asm/page.h> --#else -+#endif -+#ifndef PAGE_SIZE - #define PAGE_SIZE sysconf( _SC_PAGESIZE ) - #endif - - -Don't waste time on linux/compiler.h - ---- ./interfaces/IDirectFBVideoProvider/idirectfbvideoprovider_v4l.c -+++ ./interfaces/IDirectFBVideoProvider/idirectfbvideoprovider_v4l.c -@@ -44,7 +44,6 @@ - #include <fcntl.h> - #include <sys/ioctl.h> - --#include <linux/compiler.h> - #include "videodev.h" - - #include <directfb.h> |