migrating overlay

git-svn-id: http://svn.sabayonlinux.org/overlay@4 d7aec97c-591d-0410-af39-a8856400b30a
This commit is contained in:
cvill64
2006-09-13 23:25:21 +00:00
parent a5467272eb
commit 789783addb
205 changed files with 12077 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
AUX mmpython-0.4.9-missing_stdint_headers.patch 551 RMD160 3503491489b5591682f11c59bc227fdeda9d5f9e SHA1 faa93a375480eee9ccdce24f83c67d9ec2607e5a SHA256 1e3a1cc2fd51472a1597e1d142c0588db99bf0474f09108bf0c0ba238306cec9
MD5 92de8d5b2376babec0302c2135c91ff7 files/mmpython-0.4.9-missing_stdint_headers.patch 551
RMD160 3503491489b5591682f11c59bc227fdeda9d5f9e files/mmpython-0.4.9-missing_stdint_headers.patch 551
SHA256 1e3a1cc2fd51472a1597e1d142c0588db99bf0474f09108bf0c0ba238306cec9 files/mmpython-0.4.9-missing_stdint_headers.patch 551
DIST mmpython-0.4.9.tar.gz 127953 RMD160 d7096d74dfea2e0b0c7fae0b8d50d0306b578b30 SHA1 537fd18de6cbd4400faf62ac5744393de32e9d72 SHA256 6d0ece18d422bc9f2d987efb3b4e24f8a66cdc8e3d011aa52b59cb40c85b212c
EBUILD mmpython-0.4.9.ebuild 673 RMD160 0c492747f9fd16bff1a3591c7da9b5214e00035e SHA1 078e402165c06d2e1c4b6cfb43881a31c7759cdf SHA256 1e0650128d9b214353ddd1152fef1bdc8755809951f9f52d864741356150b108
MD5 ed72071273814e6112901bb88d4305a2 mmpython-0.4.9.ebuild 673
RMD160 0c492747f9fd16bff1a3591c7da9b5214e00035e mmpython-0.4.9.ebuild 673
SHA256 1e0650128d9b214353ddd1152fef1bdc8755809951f9f52d864741356150b108 mmpython-0.4.9.ebuild 673
MD5 b8a7b8bd659b347e4d8fb10c606bca87 files/digest-mmpython-0.4.9 244
RMD160 1bae3275dc5eb42ffe15db7b97fc41bf2463c3df files/digest-mmpython-0.4.9 244
SHA256 d78fc460b572655bf2b11b21ff9ec64c89eab741a43af03f57139677842931e8 files/digest-mmpython-0.4.9 244
@@ -0,0 +1,3 @@
MD5 f95699c2f4249d21105d7977a15d5dcc mmpython-0.4.9.tar.gz 127953
RMD160 d7096d74dfea2e0b0c7fae0b8d50d0306b578b30 mmpython-0.4.9.tar.gz 127953
SHA256 6d0ece18d422bc9f2d987efb3b4e24f8a66cdc8e3d011aa52b59cb40c85b212c mmpython-0.4.9.tar.gz 127953
@@ -0,0 +1,20 @@
--- disc/ifomodule.c~ 2004-07-17 10:46:52.000000000 +0200
+++ disc/ifomodule.c 2006-04-11 07:59:38.030697690 +0200
@@ -8,6 +8,7 @@
#include <string.h>
#include <unistd.h>
#include <assert.h>
+#include <stdint.h>
#include <dvdread/dvd_reader.h>
#include <dvdread/ifo_types.h>
--- disc/cdrommodule.c~ 2003-06-23 21:26:16.000000000 +0200
+++ disc/cdrommodule.c 2006-04-11 07:58:02.463087444 +0200
@@ -36,6 +36,7 @@
#include "Python.h"
#include <fcntl.h>
#include <sys/ioctl.h>
+#include <stdint.h>
#ifdef __linux__
#include <linux/cdrom.h>
+23
View File
@@ -0,0 +1,23 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mmpython/mmpython-0.4.9.ebuild,v 1.2 2006/04/01 15:09:52 agriffis Exp $
inherit eutils distutils
DESCRIPTION="Media metadata retrieval framework for Python."
HOMEPAGE="http://sourceforge.net/projects/mmpython/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="dvd"
DEPEND="${DEPEND}
dvd? ( >=media-libs/libdvdread-0.9.3 >=media-video/lsdvd-0.10 )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-missing_stdint_headers.patch
}