diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-libs/guilib | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-libs/guilib')
-rw-r--r-- | media-libs/guilib/Manifest | 1 | ||||
-rw-r--r-- | media-libs/guilib/files/guilib-1.1.0-gcc-4.1.x-fix.diff | 20 | ||||
-rw-r--r-- | media-libs/guilib/files/guilib-1.1.0.makefile.patch | 36 | ||||
-rw-r--r-- | media-libs/guilib/guilib-1.2.1.ebuild | 40 | ||||
-rw-r--r-- | media-libs/guilib/metadata.xml | 8 |
5 files changed, 105 insertions, 0 deletions
diff --git a/media-libs/guilib/Manifest b/media-libs/guilib/Manifest new file mode 100644 index 000000000000..fce2db9ed8d9 --- /dev/null +++ b/media-libs/guilib/Manifest @@ -0,0 +1 @@ +DIST GUIlib-1.2.1.tar.gz 345042 SHA256 3b383e537238048f4712395a38b9e3c65475d1dc93413e557f1b0a39c88f68df diff --git a/media-libs/guilib/files/guilib-1.1.0-gcc-4.1.x-fix.diff b/media-libs/guilib/files/guilib-1.1.0-gcc-4.1.x-fix.diff new file mode 100644 index 000000000000..450a4401b24d --- /dev/null +++ b/media-libs/guilib/files/guilib-1.1.0-gcc-4.1.x-fix.diff @@ -0,0 +1,20 @@ +will fix some compile Problems on gcc-4.1 + +Joerg Bornkessel <hd_brummy@gentoo.org> 29 Sep 2006 + +diff -Naur GUIlib-1.1.0.orig/GUI_menu.h GUIlib-1.1.0/GUI_menu.h +--- GUIlib-1.1.0.orig/GUI_menu.h 2006-09-29 19:38:54.767324511 +0200 ++++ GUIlib-1.1.0/GUI_menu.h 2006-09-29 19:40:13.464242760 +0200 +@@ -39,9 +39,9 @@ + virtual void AddSubitem(GUI_Menuitem *newitem); + virtual GUI_Menuitem* GetSubItem(int Aid); + +- GUI_status GUI_Submenu:: MouseDown(int x, int y, int button); +- GUI_status GUI_Submenu::MouseUp(int x,int y,int button); +- GUI_status GUI_Submenu::MouseMotion(int x,int y,Uint8 state); ++ GUI_status MouseDown(int x, int y, int button); ++ GUI_status MouseUp(int x,int y,int button); ++ GUI_status MouseMotion(int x,int y,Uint8 state); + + inline virtual int GetSubmenuId() + {return submenuid;} diff --git a/media-libs/guilib/files/guilib-1.1.0.makefile.patch b/media-libs/guilib/files/guilib-1.1.0.makefile.patch new file mode 100644 index 000000000000..bd7209eea44a --- /dev/null +++ b/media-libs/guilib/files/guilib-1.1.0.makefile.patch @@ -0,0 +1,36 @@ +*** Makefile.in.good Sun Nov 10 17:26:31 2002 +--- Makefile.in Sun Nov 10 17:26:44 2002 +*************** +*** 271,277 **** + + hello_C: $(hello_C_OBJECTS) $(hello_C_DEPENDENCIES) + @rm -f hello_C +! $(LINK) $(hello_C_LDFLAGS) $(hello_C_OBJECTS) $(hello_C_LDADD) $(LIBS) + + keyboard: $(keyboard_OBJECTS) $(keyboard_DEPENDENCIES) + @rm -f keyboard +--- 271,277 ---- + + hello_C: $(hello_C_OBJECTS) $(hello_C_DEPENDENCIES) + @rm -f hello_C +! $(CXXLINK) $(hello_C_LDFLAGS) $(hello_C_OBJECTS) $(hello_C_LDADD) $(LIBS) + + keyboard: $(keyboard_OBJECTS) $(keyboard_DEPENDENCIES) + @rm -f keyboard +*************** +*** 279,285 **** + + okay: $(okay_OBJECTS) $(okay_DEPENDENCIES) + @rm -f okay +! $(LINK) $(okay_LDFLAGS) $(okay_OBJECTS) $(okay_LDADD) $(LIBS) + .cpp.o: + $(CXXCOMPILE) -c $< + .cpp.lo: +--- 279,285 ---- + + okay: $(okay_OBJECTS) $(okay_DEPENDENCIES) + @rm -f okay +! $(CXXLINK) $(okay_LDFLAGS) $(okay_OBJECTS) $(okay_LDADD) $(LIBS) + .cpp.o: + $(CXXCOMPILE) -c $< + .cpp.lo: diff --git a/media-libs/guilib/guilib-1.2.1.ebuild b/media-libs/guilib/guilib-1.2.1.ebuild new file mode 100644 index 000000000000..a9fb0a66885f --- /dev/null +++ b/media-libs/guilib/guilib-1.2.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 +inherit autotools + +MY_P=GUIlib-${PV} + +DESCRIPTION="a simple widget set for SDL" +SRC_URI="http://www.libsdl.org/projects/GUIlib/src/${MY_P}.tar.gz" +HOMEPAGE="http://www.libsdl.org/projects/GUIlib/" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="amd64 ~hppa ppc x86" +IUSE="static-libs" + +RDEPEND=">=media-libs/libsdl-1.0.1" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i -e '/^noinst_PROGRAMS/,$d' Makefile.am + + rm -f *.m4 + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + + use static-libs || find "${ED}" -name '*.la' -exec rm {} + +} diff --git a/media-libs/guilib/metadata.xml b/media-libs/guilib/metadata.xml new file mode 100644 index 000000000000..c572c7d9b478 --- /dev/null +++ b/media-libs/guilib/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>video</herd> + <maintainer> + <email>media-video@gentoo.org</email> + </maintainer> +</pkgmetadata> |