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 /dev-python/gdmodule | |
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 'dev-python/gdmodule')
-rw-r--r-- | dev-python/gdmodule/Manifest | 1 | ||||
-rw-r--r-- | dev-python/gdmodule/files/gdmodule-0.56-fix-libs.patch | 116 | ||||
-rw-r--r-- | dev-python/gdmodule/gdmodule-0.56-r2.ebuild | 42 | ||||
-rw-r--r-- | dev-python/gdmodule/metadata.xml | 11 |
4 files changed, 170 insertions, 0 deletions
diff --git a/dev-python/gdmodule/Manifest b/dev-python/gdmodule/Manifest new file mode 100644 index 000000000000..de634ca01778 --- /dev/null +++ b/dev-python/gdmodule/Manifest @@ -0,0 +1 @@ +DIST gdmodule-0.56.tar.gz 48748 SHA256 a3a2fd6378e32f10a348c4db428a91e2c1adc28de6ec35c0619a52e379f4edec SHA512 9570a9c06a1c7d76af760fffe30cfde9a840620c608f0d55123898e030d6f3ab4c91fe75bf02b326f13f4a85ea5429c6a0ec0cd20fdc27fa83e656b81f7cce88 WHIRLPOOL e05702ca2fe129b9548f301a73b8a8b461f060dfef67e7b5135756ab70b6a996c55037c9ec60952a2577ed2468141af20ebe128f5312449b8e909092d6f8c5ad diff --git a/dev-python/gdmodule/files/gdmodule-0.56-fix-libs.patch b/dev-python/gdmodule/files/gdmodule-0.56-fix-libs.patch new file mode 100644 index 000000000000..bb46490986a9 --- /dev/null +++ b/dev-python/gdmodule/files/gdmodule-0.56-fix-libs.patch @@ -0,0 +1,116 @@ +--- Setup.py.orig 2005-03-11 04:29:59.000000000 +0000 ++++ Setup.py 2010-12-06 07:15:26.332707178 +0000 +@@ -1,102 +1,11 @@ + # Setup for gdmodule 0.50 and later + + from distutils.core import setup, Extension +-import os, glob, sys, string + + # version of this gdmodule package + this_version = "0.56" + +-# directory existence tester +- +-def dirtest(lst): +- rlst = [] +- for d in lst: +- try: +- if os.listdir(d): +- rlst.append(d) +- except: +- pass +- return rlst +- +-def filetest(path, names): +- rlst = [] +- for d in path: +- for i in range(len(names)): +- found = glob.glob(os.path.join(d, "lib%s.*" % names[i])) +- if found: +- rlst.append(names[i]) +- names[i] = None +- names = filter(None, names) +- return rlst +- +-def remove(itm, lst): +- r = range(len(lst)) +- r.reverse() +- for i in r: +- if lst[i] == itm: +- del lst[i] +- +-# library_dirs option is rather non-portable, but since I am targetting +-# Unixoid OS's I will just look for the usual suspects. +- +-libdirs = dirtest([ +- "/usr/local/lib", "/sw/lib", "/usr/lib", +- "/usr/lib/X11", "/usr/X11R6/lib", +- "/opt/gnome/lib", +-]) +- +-# include_dirs are also non-portable; same trick here. +- +-incdirs = dirtest([ +- "/usr/local/include", "/sw/include", "/usr/include", +- "/usr/include/X11", "/usr/X11R6/include", +- "/opt/gnome/include", +-]) +- +-# Try to identify our libraries +- +-want_libs = [ +- "gd", +- "jpeg", "png", "gif", "z", +- "X11", "Xpm", +- "ttf", "freetype", +-] +- +-libs = filetest(libdirs, want_libs) +- +-missing = [] +- +-for l in want_libs: +- if l and l not in libs: +- missing.append(l) +- +-if missing: +- print "WARNING: Missing", string.join(missing, ", "), "Libraries" +- +-# hand-clean the libs +- +-if "gd" not in libs: +- print "Can't find GD library." +- sys.exit(0) +- +-if "ttf" in libs and "freetype" in libs: +- remove("ttf", libs) +- +-if "Xpm" in libs and "X11" not in libs: +- remove("Xpm", libs) +- +-if "png" in libs and "z" not in libs: +- remove("png", libs) +- +-if "z" in libs and "png" not in libs: +- remove("png", libs) +- +-# build the macro list +- +-macros = [] +- +-for l in libs: +- macros.append(( "HAVE_LIB%s" % l.upper(), None )) ++libs = [ "gd" ] + + # OK, now do it! + +@@ -111,8 +20,7 @@ + py_modules=["gd"], + ext_modules=[ + Extension("_gd", ["_gdmodule.c"], +- include_dirs=incdirs, library_dirs=libdirs, +- libraries=libs, define_macros=macros)], ++ libraries=libs)], + ) + + # end of file... I guess we're done. diff --git a/dev-python/gdmodule/gdmodule-0.56-r2.ebuild b/dev-python/gdmodule/gdmodule-0.56-r2.ebuild new file mode 100644 index 000000000000..b6b49762708d --- /dev/null +++ b/dev-python/gdmodule/gdmodule-0.56-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 flag-o-matic + +DESCRIPTION="Python extensions for gd" +HOMEPAGE="https://github.com/Solomoriah/gdmodule" +SRC_URI="http://newcenturycomputers.net/projects/download.cgi/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x86-linux" +IUSE="jpeg png truetype xpm" + +RDEPEND=" + media-libs/gd[jpeg?,png?,truetype?,xpm?] + media-libs/giflib + jpeg? ( virtual/jpeg:0 ) + png? ( media-libs/libpng:0 ) + truetype? ( media-libs/freetype:2 ) + xpm? ( x11-libs/libXpm )" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-fix-libs.patch ) + +python_prepare_all() { + distutils-r1_python_prepare_all + mv Setup.py setup.py || die + + # append unconditionally because it is enabled id media-libs/gd by default + append-cppflags -DHAVE_LIBGIF + + use jpeg && append-cppflags -DHAVE_LIBJPEG + use png && append-cppflags -DHAVE_LIBPNG + use truetype && append-cppflags -DHAVE_LIBFREETYPE + use xpm && append-cppflags -DHAVE_LIBXPM +} diff --git a/dev-python/gdmodule/metadata.xml b/dev-python/gdmodule/metadata.xml new file mode 100644 index 000000000000..0651bcd4e842 --- /dev/null +++ b/dev-python/gdmodule/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sci</herd> + <longdescription lang="en"> + This module is a python wrapper for the GD library. +</longdescription> + <upstream> + <remote-id type="github">Solomoriah/gdmodule</remote-id> + </upstream> +</pkgmetadata> |