Subversion Repositories KardasA Overlay

Compare Revisions

Ignore whitespace Rev HEAD → Rev 1

/metadata/layout.conf
File deleted
\ No newline at end of file
/dev-python/4suite/4suite-1.0.2-r2.ebuild
File deleted
/dev-python/4suite/metadata.xml
File deleted
Property changes:
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: dev-python/4suite/files/4suite-1.0.2-version_parsing.patch
===================================================================
--- dev-python/4suite/files/4suite-1.0.2-version_parsing.patch (revision 238)
+++ dev-python/4suite/files/4suite-1.0.2-version_parsing.patch (nonexistent)
@@ -1,43 +0,0 @@
---- Ft/Lib/DistExt/Version.py
-+++ Ft/Lib/DistExt/Version.py
-@@ -1,4 +1,5 @@
- import re
-+import warnings
- from distutils.version import Version, StrictVersion
-
- __all__ = ['CommonVersion', 'VersionPredicate', 'SplitProvision',
-@@ -40,6 +41,7 @@
- def parse(self, vstring):
- # save the original string for use by __str__
- self._original = vstring
-+ vstring = vstring.rstrip('+')
-
- def versiontuple(vstring):
- """
-@@ -53,9 +55,12 @@
-
- # Get the version number
- match = self.version_re.match(vstring)
-- if not match:
-- raise ValueError("invalid version number: %r" % vstring)
-- self.version = versiontuple(match.group())
-+ if match:
-+ self.version = versiontuple(match.group())
-+ else:
-+ warnings.filterwarnings("always", "invalid version number: .*, treating it as '0'", Warning)
-+ warnings.warn("invalid version number: %r, treating it as '0'" % vstring, Warning)
-+ self.version = (0,)
-
- # Check for pre- and post-release tags
- tags = []
-@@ -64,7 +69,9 @@
- while start < end:
- match = self.tag_re.match(vstring, start)
- if not match:
-- raise ValueError("invalid release tag: %r" % vstring[start:])
-+ warnings.filterwarnings("always", "invalid release tag: .*, ignoring it", Warning)
-+ warnings.warn("invalid release tag: %r, ignoring it" % vstring[start:], Warning)
-+ break
- tag, version = match.groups()
- tag = tag and tag.lower()
- if tag in self.tag_aliases:
Index: dev-python/4suite/files/4suite-1.0.2-amd64_python2.5.patch
===================================================================
--- dev-python/4suite/files/4suite-1.0.2-amd64_python2.5.patch (revision 238)
+++ dev-python/4suite/files/4suite-1.0.2-amd64_python2.5.patch (nonexistent)
@@ -1,11 +0,0 @@
---- Ft/Lib/DistExt/BuildExt.py.orig 2006-12-29 00:09:54.000000000 +0100
-+++ Ft/Lib/DistExt/BuildExt.py 2006-12-29 00:10:37.000000000 +0100
-@@ -61,6 +61,8 @@
- if (sys.platform.startswith('linux') and
- sysconfig.get_config_var('Py_ENABLE_SHARED')):
- libpl, ldlibrary = sysconfig.get_config_vars('LIBPL', 'LDLIBRARY')
-+ if libpl not in self.library_dirs:
-+ libpl = os.path.join(sys.prefix, 'lib', 'python' + sys.version[:3], 'config')
- if libpl in self.library_dirs:
- if not os.path.exists(os.path.join(libpl, ldlibrary)):
- self.library_dirs.remove(libpl)
Index: dev-python/4suite/files/4suite-1.0.2-config.patch
===================================================================
--- dev-python/4suite/files/4suite-1.0.2-config.patch (revision 238)
+++ dev-python/4suite/files/4suite-1.0.2-config.patch (nonexistent)
@@ -1,14 +0,0 @@
---- Ft/Lib/DistExt/InstallConfig.py.orig 2008-04-17 13:09:50.000000000 -0700
-+++ Ft/Lib/DistExt/InstallConfig.py 2008-04-17 13:12:01.000000000 -0700
-@@ -106,7 +106,10 @@
- lines = []
- for name in CONFIG_KEYS:
- value = install_config[CONFIG_MAPPING.get(name, name)]
-- lines.append('%-*s = %r' % (maxlen, name.upper(), value))
-+ value = '%r' % value
-+ if not value.startswith("'/") and name != 'resourcebundle':
-+ value = "'/" + value[1:]
-+ lines.append('%-*s = %s' % (maxlen, name.upper(), value))
- install_config = '\n '.join(lines)
-
- lines = []
Index: dev-python/4suite/Manifest
===================================================================
--- dev-python/4suite/Manifest (revision 238)
+++ dev-python/4suite/Manifest (nonexistent)
@@ -1,8 +0,0 @@
-AUX 4suite-1.0.2-amd64_python2.5.patch 659 RMD160 0edb4506c5152b6c13c24885bc9a5f0a8e0c68bb SHA1 3d1bf97de8986f405fa4059c9439b239929c9815 SHA256 a6b5120f36cd3d533e29f3460a9809f2d9cdf97b8b03bdad99c53ee936e9eb64
-AUX 4suite-1.0.2-config.patch 653 RMD160 e90ab21bbcdd208250a69e1fc36f04d2c58f5c30 SHA1 390a883802c16e431890b767ec16b1351308d8c7 SHA256 8969a49f94f961f0692f33d49d432c03ac8351fa46cd7bb8c98adb252069c349
-AUX 4suite-1.0.2-version_parsing.patch 1652 RMD160 00ab511e0a0d3a914ebc838537bafa9e4c3c1b74 SHA1 7753e9f72ef6dd52ec07ee62c6e791870c2137ce SHA256 46d009b68018bcc6c1b1fb6cf8b1e0c0388181840d4a5f97daec1ed0e3992a65
-DIST 4Suite-XML-1.0.2.tar.bz2 1286713 RMD160 710de215ac110745a36ab4fec7d718cbcab45bd6 SHA1 d8799b093c4853860c8d7cb9ffccd28adf17b928 SHA256 5a4546dc1fad9b240a46c1b967fae317857cd2d2689e4226de1647083bf6ac3c
-EBUILD 4suite-1.0.2-r1.ebuild 1725 RMD160 a84c5a331791960174a5ed1b4d9b46b17315763e SHA1 188addc77352d6b2361ec7a380481e0c5d6a4b62 SHA256 d31735ba1e891f6237c376a65d39fb7fb66d8d313f46cc9630868b80a536a9d1
-EBUILD 4suite-1.0.2-r2.ebuild 1629 RMD160 ba0d05e465cde9d5153a823ebd13da522506fbaa SHA1 143297bd036ca6c4773ffc1901e54f4c3f86fbd6 SHA256 7ca888ed3586ade1329ffaf09992ecbcebb8557bbe555250a4d26d09385ae852
-MISC ChangeLog 6791 RMD160 291d0fa9e772ba9e2da78af25bb2f8f3dafc4d46 SHA1 8b9b6a006257e6f5d447f78c717de68e85de633e SHA256 06cff5c20cf273a677272557ec0c060ead4fcc13e08174b58b496aaf5e98fe26
-MISC metadata.xml 159 RMD160 900a8c55d7a7d2f6312594769aaf941bf9e99c7f SHA1 c8e604d56dae898258b5254d78cfeac0b981e288 SHA256 9f01104d3484792496faff4805eed0ecea2352a897151f3397d49a13800037b4
Index: dev-python/4suite/ChangeLog
===================================================================
--- dev-python/4suite/ChangeLog (revision 238)
+++ dev-python/4suite/ChangeLog (nonexistent)
@@ -1,196 +0,0 @@
-# ChangeLog for dev-python/4suite
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/4suite/ChangeLog,v 1.44 2010/07/21 21:46:04 arfrever Exp $
-
- 21 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
- 4suite-1.0.2-r1.ebuild:
- Use -fno-strict-aliasing to avoid breaking strict-aliasing rules.
-
- 23 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
- 4suite-1.0.2-r1.ebuild:
- Set SUPPORT_PYTHON_ABIS.
-
- 06 Sep 2009; Christian Ruppert <idl0r@gentoo.org>
- -files/1.0_b3-add_root_opt.diff:
- Remove unused patch.
-
- 09 Jan 2009; Patrick Lauer <patrick@gentoo.org> -4suite-1.0_beta3.ebuild:
- Remove old
-
- 22 Jun 2008; Raúl Porcel <armin76@gentoo.org> 4suite-1.0.2-r1.ebuild:
- alpha/ia64 stable wrt #228567
-
- 21 Jun 2008; Markus Rothe <corsair@gentoo.org> 4suite-1.0.2-r1.ebuild:
- Stable on ppc64; bug #228567
-
- 21 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
- 4suite-1.0.2-r1.ebuild:
- stable x86, bug 228567
-
- 21 Jun 2008; Olivier Crête <tester@gentoo.org> 4suite-1.0.2-r1.ebuild:
- Stable on amd64, bug #228567
-
- 21 Jun 2008; nixnut <nixnut@gentoo.org> 4suite-1.0.2-r1.ebuild:
- Stable on ppc wrt bug 228567
-
- 20 Jun 2008; Ferris McCormick <fmccor@gentoo.org> 4suite-1.0.2-r1.ebuild:
- Sparc stable, Bug #228567.
-
-*4suite-1.0.2-r1 (17 Apr 2008)
-
- 17 Apr 2008; Rob Cakebread <pythonhead@gentoo.org>
- +files/4suite-1.0.2-config.patch, 4suite-1.0_beta3.ebuild,
- -4suite-1.0.2.ebuild, +4suite-1.0.2-r1.ebuild:
- Fixes bug #217780 and added patch to fix catalog warnings and errors.
- Quote variables.
-
- 23 Feb 2008; Tiziano Müller <dev-zero@gentoo.org> 4suite-1.0.2.ebuild:
- Fixed strict-multilib problem (bug #209337, thanks to Tomas A.)
-
-*4suite-1.0.2 (29 Dec 2006)
-
- 29 Dec 2006; Tiziano Müller <dev-zero@gentoo.org>
- +files/4suite-1.0.2-amd64_python2.5.patch,
- -files/4S-1.0_a4.addrootopt-gentoo.diff, -4suite-1.0_alpha3.ebuild,
- -4suite-1.0_beta1.ebuild, +4suite-1.0.2.ebuild:
- Version bump (bug #150385, thanks to Brad Walker), solves bug #148726 .
- Dropped old versions.
-
- 20 Oct 2006; Bryan Østergaard <kloeri@gentoo.org>
- 4suite-1.0_beta3.ebuild:
- Stable on Alpha.
-
- 29 Aug 2006; <blubb@gentoo.org> 4suite-1.0_beta3.ebuild:
- fix to adhere multilib-strict; bug 145456 thanks to Michael Weyershaeuser
-
- 29 Aug 2006; Luis Medinas <metalgod@gentoo.org> 4suite-1.0_beta3.ebuild:
- Stable on amd64. Bug #123394.
-
- 23 Aug 2006; Jason Wever <weeve@gentoo.org> 4suite-1.0_beta3.ebuild:
- Stable on SPARC.
-
- 17 Aug 2006; Markus Rothe <corsair@gentoo.org> 4suite-1.0_beta3.ebuild:
- Stable on ppc64
-
- 13 Aug 2006; Jason Wever <weeve@gentoo.org> 4suite-1.0_beta1.ebuild:
- Stable on SPARC wrt bug #123394.
-
- 05 Aug 2006; Michael Hanselmann <hansmi@gentoo.org>
- 4suite-1.0_beta3.ebuild:
- Stable on ppc.
-
- 30 July 2006; Tom Gall <tgall@gentoo.org> 4suite-1.0_beta3.ebuild:
- added ~ppc64
-
- 16 Jul 2006; Alastair Tse <liquidx@gentoo.org> -4suite-1.0_alpha4.ebuild,
- 4suite-1.0_beta3.ebuild:
- stable bump. update dependency to pyxml-0.8.4.
-
- 08 Jul 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
- 4suite-1.0_beta1.ebuild:
- stable on ppc (Bug #123394)
-
- 09 Mar 2006; Aron Griffis <agriffis@gentoo.org> 4suite-1.0_beta3.ebuild:
- Mark 1.0_beta3 stable on ia64
-
-*4suite-1.0_beta3 (21 Feb 2006)
-
- 21 Feb 2006; Alastair Tse <liquidx@gentoo.org>
- +files/1.0_b3-add_root_opt.diff, +4suite-1.0_beta3.ebuild:
- version bump. plus stable bump for 1.0b1 because 1.0a3 does not compile any
- more on stable (#123394)
-
- 02 Oct 2005; Aron Griffis <agriffis@gentoo.org> 4suite-1.0_beta1.ebuild:
- Mark 1.0_beta1 stable on ia64
-
- 10 Sep 2005; Aron Griffis <agriffis@gentoo.org> 4suite-1.0_beta1.ebuild:
- Mark 1.0_beta1 stable on alpha
-
- 26 Aug 2005; Aron Griffis <agriffis@gentoo.org> 4suite-1.0_beta1.ebuild:
- add ~ia64
-
- 01 May 2005; Michael Hanselmann <hansmi@gentoo.org>
- 4suite-1.0_alpha3.ebuild:
- Stable on ppc.
-
-*4suite-1.0_beta1 (18 Apr 2005)
-
- 18 Apr 2005; Alastair Tse <liquidx@gentoo.org> +4suite-1.0_beta1.ebuild:
- version bump
-
- 20 Mar 2005; Heinrich Wendel <lanius@gentoo.org> 4suite-1.0_alpha4.ebuild:
- add amd64 keyword
-
-*4suite-1.0_alpha4 (19 Jan 2005)
-
- 19 Jan 2005; Rob Cakebread <pythonhead@gentoo.org>
- +4suite-1.0_alpha4.ebuild:
- Version bump. bug# 78517 Thanks for patches Jacob Smullyan
- <smulloni@smullyan.org> and kutsya@gentoo.org
-
- 30 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
- Change encoding to UTF-8 for GLEP 31 compliance
-
- 07 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> -4suite-0.11.1.ebuild:
- Remove old version.
-
- 04 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> 4suite-1.0_alpha3.ebuild:
- Stable on alpha.
-
- 04 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> 4suite-1.0_alpha3.ebuild:
- Fix broken ebuild, thanks to Jacob Smullyan, bug 52884.
-
- 07 May 2004; Bryan Østergaard <kloeri@gentoo.org> 4suite-1.0_alpha3.ebuild:
- Fix typo.
-
- 04 May 2004; Bryan Østergaard <kloeri@gentoo.org> 4suite-0.11.1.ebuild,
- 4suite-1.0_alpha3.ebuild:
- Add missing IUSE.
-
- 23 Mar 2004; Alastair Tse <liquidx@gentoo.org> 4suite-0.11.1.ebuild,
- 4suite-1.0_alpha3.ebuild:
- remove RDEPEND (#45343)
-
- 26 Feb 2004; Sven Blumenstein <bazik@gentoo.org> 4suite-1.0_alpha3.ebuild:
- Stable on sparc.
-
- 18 Jan 2004; Alastair Tse <liquidx@gentoo.org> 4suite-0.11.1.ebuild,
- 4suite-1.0_alpha3.ebuild, metadata.xml:
- moved from dev-python/4Suite to dev-python/4suite, also revamped stable 0.11.1
- to use distutils
-
-*4suite-1.0_alpha3 (03 Sep 2003)
-
- 03 Sep 2003; Alastair Tse <liquidx@gentoo.org> 4Suite-1.0_alpha3.ebuild:
- version bump. changed . (#27199)
-
-*4suite-1.0_alpha1 (20 Apr 2003)
-
- 20 Apr 2003; Bart Lauwers <blauwers@gentoo.org> :
- Version bump per bug #12760 and ebuild clean-up
-
-*4suite-0.11.1 (18 Mar 2002)
-
- 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
-
- 17 Mar 2003; Graham Forest <vladimir@gentoo.org> 4Suite-0.11.1.ebuild:
- set ~ppc in keywords
-
- 26 Jul 2002; George Shapovalov <george@gentoo.org> 4Suite-0.11.1.ebuild :
- added KEYWORDS,SLOT,LICENSE
-
- 18 Mar 2002; Seemant Kulleen <seemant@gentoo.org> 4Suite-0.11.1 :
-
- Version upgrade and made a dependency on dev-python/PyXML >= instead of = to
- keep up with upgrades of that, thanks to bs@wasd.dk (Bjarke S?rensen).
-
-
-*4Suite-0.11.1_beta3 (1 Feb 2002)
-
- 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
-
- Added initial ChangeLog which should be updated whenever the package is
- updated in any way. This changelog is targetted to users. This means that the
- comments should well explained and written in clean English. The details about
- writing correct changelogs are explained in the skel.ChangeLog file which you
- can find in the root directory of the portage repository.
Index: dev-python/4suite/4suite-1.0.2-r1.ebuild
===================================================================
--- dev-python/4suite/4suite-1.0.2-r1.ebuild (revision 238)
+++ dev-python/4suite/4suite-1.0.2-r1.ebuild (nonexistent)
@@ -1,64 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/4suite/4suite-1.0.2-r1.ebuild,v 1.10 2010/07/21 21:46:04 arfrever Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils eutils
-
-MY_P="4Suite-XML-${PV}"
-
-DESCRIPTION="Python tools for XML processing and object-databases."
-HOMEPAGE="http://www.4suite.org/ http://pypi.python.org/pypi/4Suite"
-SRC_URI="mirror://sourceforge/foursuite/${MY_P}.tar.bz2"
-
-LICENSE="Apache-1.1"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE="doc"
-
-DEPEND=">=dev-python/pyxml-0.8.4"
-RDEPEND="${DEPEND}"
-
-PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
-
-DOCS="docs/*.txt"
-PYTHON_MODNAME="Ft"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-amd64_python2.5.patch"
- epatch "${FILESDIR}/${P}-config.patch"
-
- # Improve handling of package versions with '+' character.
- sed -e $'/self._original = vstring/a\\\n vstring = vstring.rstrip(\'+\')' -i Ft/Lib/DistExt/Version.py || die "sed failed"
-
- if ! use doc; then
- sed -e "/'build_docs'/d" -i Ft/Lib/DistExt/Build.py || die "sed failed"
- fi
- distutils_src_prepare
-}
-
-src_configure() {
- configuration() {
- "$(PYTHON)" setup.py config \
- --prefix=/usr \
- --docdir=/usr/share/doc/${PF} \
- --datadir=/usr/share/${PN} \
- --libdir="$(python_get_sitedir)" || die "setup.py config failed with Python ${PYTHON_ABI}"
- }
- python_execute_function configuration
-}
-
-src_install() {
- distutils_src_install $(use_with doc docs)
-
- delete_profiles_and_tests() {
- rm -fr "${ED}$(python_get_sitedir)/"{profiles,tests}
- }
- python_execute_function -q delete_profiles_and_tests
-}
Index: .directory
===================================================================
--- .directory (revision 238)
+++ .directory (nonexistent)
@@ -1,3 +0,0 @@
-[Dolphin]
-CategorizedSorting=true
-Timestamp=2010,5,18,22,55,13
Index: dev-libs/libconcord/libconcord-0.23.ebuild
===================================================================
--- dev-libs/libconcord/libconcord-0.23.ebuild (revision 238)
+++ dev-libs/libconcord/libconcord-0.23.ebuild (nonexistent)
@@ -1,44 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-MY_P="concordance-${PV}"
-
-DESCRIPTION="Library for programming the Logitech Harmony universal remote; part
-of the concordance project"
-HOMEPAGE="http://www.phildev.net/concordance/"
-SRC_URI="mirror://sourceforge/concordance/${MY_P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-RDEPEND="dev-libs/libusb"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}/${PN}"
-
-src_configure() {
- # Debian bug 594615
- epatch "${FILESDIR}"/${P}-flash.patch || die "patch failed"
-
- econf || die "configure failed"
-}
-
-src_compile() {
- emake DESTDIR="${D}" || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ../Changelog ../LICENSE README
- S="${S}/bindings/python"
- cd ${S}
- python setup.py install --root=${D}
-}
-
-
Index: dev-libs/libconcord/libconcord-0.24.ebuild
===================================================================
--- dev-libs/libconcord/libconcord-0.24.ebuild (revision 238)
+++ dev-libs/libconcord/libconcord-0.24.ebuild (nonexistent)
@@ -1,41 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-MY_P="concordance-${PV}"
-
-DESCRIPTION="Library for programming the Logitech Harmony universal remote; part
-of the concordance project"
-HOMEPAGE="http://www.phildev.net/concordance/"
-SRC_URI="mirror://sourceforge/concordance/${MY_P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-RDEPEND="dev-libs/libusb"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}/${PN}"
-
-src_configure() {
- econf || die "configure failed"
-}
-
-src_compile() {
- emake DESTDIR="${D}" || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ../Changelog ../LICENSE README
- S="${S}/bindings/python"
- cd ${S}
- python setup.py install --root=${D}
-}
-
-
Index: dev-libs/libconcord/files/libconcord-0.23-flash.patch
===================================================================
--- dev-libs/libconcord/files/libconcord-0.23-flash.patch (revision 238)
+++ dev-libs/libconcord/files/libconcord-0.23-flash.patch (nonexistent)
@@ -1,11 +0,0 @@
---- remote_info.h.orig 2011-01-25 22:37:20.436530749 -0600
-+++ remote_info.h 2011-01-25 22:38:38.498680286 -0600
-@@ -313,7 +313,7 @@ static const TArchInfo ArchList[]={
- {
- SERIAL_LOCATION_FLASH, // serial_location
- 0x000110, // serial_address
-- 0x000000, // flash_base
-+ 0x800000, // flash_base
- 0x810000, // firmware_base
- 0x820000, // config_base
- 0x810000, // firmware_update_base
Index: dev-libs/libconcord/Manifest
===================================================================
--- dev-libs/libconcord/Manifest (revision 238)
+++ dev-libs/libconcord/Manifest (nonexistent)
@@ -1,5 +0,0 @@
-AUX libconcord-0.23-flash.patch 411 SHA256 b754963c20c38e4007333ed858d48805fc642eeb48d87f089a8b5c4fa2c76e12 SHA512 ee63ef6b9001978439b693468c1cac48762e69fac22962df24e810557281385b06289b5f1eb3ba97be13867aadca7eea2083ace67698bdae10e46bc58377dcf1 WHIRLPOOL 82edb346a1e52b034f0fc4f3057c9f3807fb23934a315e65d07af3cf7e955a1df4481a768fd2e4002fe35b9339b535d26ecab69c441ebdca0ebb7c2445100880
-DIST concordance-0.23.tar.bz2 991468 SHA256 47aaaad4e7f7e11ca0bbf9817c459ef7a7979cc9ecd73ac7eddcffb0063efc9f
-DIST concordance-0.24.tar.bz2 1082955 SHA256 e2bea0430e936fd9e3e6a853b6533edbfd9211cf328c5334789b432035f03656 SHA512 d49af8fed94199dd183085dc013ad35801dd98283ee7e6c46e07a1fbea50d078201f51ab32cb92c3a8bf3d9099b3b6ae3d9aba05211570e76227c995e724323a WHIRLPOOL 282770806c300ed9510dea01c0baad1829492cc4ddf672de6dd34cf0b99c6ea69fc0e278ea63f5762687a0146bc9d384956e4607286edb96c18613630fdb54e6
-EBUILD libconcord-0.23.ebuild 903 SHA256 c3aaa51ed54871e5b88739870aad67abaee88a1bddd7109c2853316ea4544cb8 SHA512 25e6ad18885a1c3879ed1c4b969230d55186e53b2c420f71fa4c2366f81cab89e0a31eb9bb45e1c50fc759cdf9e9d5dfcae64f0fbf7d1b187e5055324b491c00 WHIRLPOOL 843d5cef281edf5c71ddbd16476057709cee2d3dbb912beadb25b42042982958cafa388c67db7795890189387fd5696a55208d2233c5b595b0dbbdc51fd2794b
-EBUILD libconcord-0.24.ebuild 820 SHA256 24e95d68f3d46651ed65f7f77417e69d6ac5952ef660050280f5784ce319a036 SHA512 9dd10a698f3aab8b6dfe35f97e83f0f1bf732c7b51884b7a3d770b2b9f64be74bda9726625a0eb14c0afbbb75716647afc4b06aed7742c91da8538ff7b972d8a WHIRLPOOL c7a2113e9bf62eb44bb34221a9d6099a13d96491fc57e1ea552a4380e0efe36946a79d5171b4099f29db7c1bae610415ed2126245ffc6d165122ddb5722704a1
Index: licenses/Frictional_Games-EULA
===================================================================
--- licenses/Frictional_Games-EULA (revision 238)
+++ licenses/Frictional_Games-EULA (nonexistent)
@@ -1,19 +0,0 @@
-End User License Agreement‭
-
-Under this End User License Agreement‭ (‬the‭ "‬Agreement‭")‬,‭ ‬Frictional Games HB‭ (‬the‭ "‬Vendor‭") ‬grants to the user‭ (‬the‭ "‬Licensee‭") ‬a non-exclusive and non-transferable license‭ (‬the‭ "‬License‭") ‬to use the software‭ (‬the‭ "‬Software‭")‬.
-
-‎"‏Software‭" ‬includes the executable computer programs and any related documentation and any other files that may accompany the product.
-‎
-Title,‭ ‬copyright,‭ ‬intellectual property rights and distribution rights of the Software remain exclusively with the Vendor.‭ ‬Intellectual property rights include the look and feel of the Software.‭ ‬This Agreement constitutes a license for use only and is not in any way a transfer of ownership rights to the Software.
-
-The Software may be loaded onto no more than one computer at a time.‭ ‬A single copy may be made for backup purposes only.
-‎
-The rights and obligations of this Agreement are personal rights granted to the Licensee only.‭ ‬The Licensee may not transfer or assign any of the rights or obligations granted under this Agreement to any other person or legal entity.‭ ‬The Licensee may not make available the Software for use by one or more third parties.
-‎
-The Software may not be reverse-engineered,‭ ‬or de-compiled in any manner through current or future available technologies.
-‎
-The Software is provided by the Vendor and accepted by the Licensee‭ "‬as is‭"‬.‭ ‬The Vendor will not be liable for any general,‭ ‬special,‭ ‬incidental or consequential damages including,‭ ‬but not limited to,‭ ‬loss of production,‭ ‬loss of profits,‭ ‬loss of revenue,‭ ‬loss of data,‭ ‬or any other business or economic disadvantage suffered by the Licensee arising out of the use or failure to use the Software.
-‎
-The Vendor does not warrant that use of the Software will be uninterrupted or error-free.‭ ‬The Licensee accepts that software in general is prone to bugs and flaws within an acceptable level as determined in the industry.
-
-All terms,‭ ‬conditions and obligations of this Agreement will be deemed to be accepted by the Licensee‭ ("‬Acceptance‭") ‬on installation of the Software.
\ No newline at end of file
Index: x11-themes/mint-x-theme/mint-x-theme-1.0.5.ebuild
===================================================================
--- x11-themes/mint-x-theme/mint-x-theme-1.0.5.ebuild (revision 238)
+++ x11-themes/mint-x-theme/mint-x-theme-1.0.5.ebuild (nonexistent)
@@ -1,29 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-EAPI="4"
-
-DESCRIPTION="Mint-X GTK themes"
-HOMEPAGE="http://packages.linuxmint.com/pool/main/m/mint-x-theme/"
-SRC_URI="http://packages.linuxmint.com/pool/main/m/${PN}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="x11-themes/gtk-engines-murrine
- x11-themes/mint-x-icons"
-
-DEPEND="${RDEPEND}"
-
-RESTRICT="binchecks strip"
-
-S=${WORKDIR}
-
-src_install() {
- insinto /usr/share/themes
- doins -r mint-x-theme/usr/share/themes/Mint-X{,-Metal} || die "Installing themes failed!"
- dodoc mint-x-theme/debian/changelog mint-x-theme/debian/copyright
-}
Index: x11-themes/mint-x-theme/mint-x-theme-1.0.7.ebuild
===================================================================
--- x11-themes/mint-x-theme/mint-x-theme-1.0.7.ebuild (revision 238)
+++ x11-themes/mint-x-theme/mint-x-theme-1.0.7.ebuild (nonexistent)
@@ -1,29 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-EAPI="4"
-
-DESCRIPTION="Mint-X GTK themes"
-HOMEPAGE="http://packages.linuxmint.com/pool/main/m/mint-x-theme/"
-SRC_URI="http://packages.linuxmint.com/pool/main/m/${PN}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="x11-themes/gtk-engines-murrine
- x11-themes/mint-x-icons"
-
-DEPEND="${RDEPEND}"
-
-RESTRICT="binchecks strip"
-
-S=${WORKDIR}
-
-src_install() {
- insinto /usr/share/themes
- doins -r mint-x-theme/usr/share/themes/Mint-X{,-Metal}
- dodoc mint-x-theme/debian/changelog mint-x-theme/debian/copyright
-}
Index: x11-themes/mint-x-theme/Manifest
===================================================================
--- x11-themes/mint-x-theme/Manifest (revision 238)
+++ x11-themes/mint-x-theme/Manifest (nonexistent)
@@ -1,4 +0,0 @@
-DIST mint-x-theme_1.0.5.tar.gz 916331 SHA256 722e544a4edde709529d552d69ab1d18b5c988eb4f2277a2ac9a961b5b2195aa
-DIST mint-x-theme_1.0.7.tar.gz 931830 SHA256 01d3a644d3a52a7d2924828230e054c57464e989e31d95e1eb763d0d67f5fcc8 SHA512 0338252d0064b9a25e98cc6425cdff565cc1f7c8154f87e7b1fc00f376bb53aa803d04faa62330c4fef6d3efc6e56cf05d749e6a31f784fb3724a0d1bdf32d2b WHIRLPOOL 84a602817ca32cbdd97ab16ec3ddd4360c062c1fb16cd2d56563ccfa6270dc391275549252652620f1c2897e9b81326617646fb5b9a7dacf831e01abd900218f
-EBUILD mint-x-theme-1.0.5.ebuild 700 SHA256 4ec83950c47bf18e95379f84aee6efdedf17e603df250110d797e68ba60bdc9e SHA512 29bfcc871b744df87df65904f0491f2898978330d246a3c08dcba2650e60c075310327e142739668b92ad27630301905b970dff4975321e6560b27142d1526af WHIRLPOOL a62cd1f5d860e408ef138bfce6e2bc5f25daa30e66663d33a9f0b466dd940b66cfcb539753e963cf21f9587a37de58dcdbf8693da7776ecd65563e9e10f0e436
-EBUILD mint-x-theme-1.0.7.ebuild 665 SHA256 c1dbb6a46db13b1dee1dc5c0df839d71429e80c1c6b54bb17857ba3e55389efa SHA512 35bf5f8eb1fbb08d63d0db27c51c2997b9aabbcedb6dc6a8ee1ae86c578e3799cff1a79ade220dada28887f80a49cab8dec91030f2d573c40a1307e1299b70e4 WHIRLPOOL d38cc89e0cb9f103b0a6836a826f3782493ae28fc91342643e6e9878872b9a0d77dd3e8533b650fc5aef3077f40153bfc5dc7dcbcc214ccd83a4ceaac6fa30bf
Index: x11-themes/mint-z-theme/mint-z-theme-1.1.4.ebuild
===================================================================
--- x11-themes/mint-z-theme/mint-z-theme-1.1.4.ebuild (revision 238)
+++ x11-themes/mint-z-theme/mint-z-theme-1.1.4.ebuild (nonexistent)
@@ -1,28 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-EAPI="4"
-
-DESCRIPTION="Mint-Z GTK themes"
-HOMEPAGE="http://packages.linuxmint.com/pool/main/m/mint-z-theme/"
-SRC_URI="http://packages.linuxmint.com/pool/main/m/${PN}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="x11-themes/mint-x-theme"
-
-DEPEND="${RDEPEND}"
-
-RESTRICT="binchecks strip"
-
-S=${WORKDIR}
-
-src_install() {
- insinto /usr/share/themes
- doins -r mint-z-theme/usr/share/themes/Mint-Z{,-Dark,-Mate}
- dodoc mint-z-theme/debian/changelog mint-z-theme/debian/copyright
-}
Index: x11-themes/mint-z-theme/Manifest
===================================================================
--- x11-themes/mint-z-theme/Manifest (revision 238)
+++ x11-themes/mint-z-theme/Manifest (nonexistent)
@@ -1,2 +0,0 @@
-DIST mint-z-theme_1.1.4.tar.gz 227453 SHA256 7f800d70d2c2d36af6458616dedf3f8e6a919bc2368bb73eb27bf79c610795ef SHA512 6cebe900ce355c56e1698240f7459887362af39de7849e09883968207bd20684d7c6913dfee7f39988efeef0b2ca5d55cb9c93563d044846167a3d71780c06e2 WHIRLPOOL fa4fbe628883c786869c4f6917fff14412952af41649488b4ee41b5b1627153898e55b79aee6a7adf649b22d618437de665224ffd27b43be1d1ad544a8a05109
-EBUILD mint-z-theme-1.1.4.ebuild 636 SHA256 38ce1f7b3946e67600837557c7a1e252409ada0f20ccdf379a62142fa4b89598 SHA512 19fe712748bfbab53a5efb0a9d1b838302e1818ceb544b9e03730ebb1cd7d258c008cda1a933714fc037e9cd1c9369b2893e98c36ff030b9728e70e1ba11df34 WHIRLPOOL 9368f93906087251d59e5f8db127f710a3b0000756161cd14b54b14b003cc7a849626c8438b2982153d5314de2358721c4a94a9b02cb6b852bb13b5dd7676f9b
Index: x11-themes/mint-x-icons/Manifest
===================================================================
--- x11-themes/mint-x-icons/Manifest (revision 238)
+++ x11-themes/mint-x-icons/Manifest (nonexistent)
@@ -1,5 +0,0 @@
-DIST mint-x-icons_1.0.7.tar.gz 19204971 SHA256 cc0a7b11d4a0e0db11dbf8510a91cd2de46f8f4fd494a7a7920661cb63df2985 SHA512 fcad4855f9cd4e3c37af101de425f246f93c68245197d94d09ed765573ddb0a6db1183ddc5e45e15c8ae9538ae6009f59d26fcf6c4fb336f3a87dbee6cefc97a WHIRLPOOL c9bcc523a6175407ef0edf5049c83723c54c0bb231d94a2811922065933d920483b538be3028e02d8408c3897ba0cd19f9b4a6d2cf7858d295482b7c60942131
-DIST mint-x-icons_1.1.1.tar.gz 45781381 SHA256 df61812d855745e6685b83f23f1352b3be68c06003cbc76cb5256f83fb624cb8 SHA512 7b65712502e6e3643f0c1a05a95b9a7622e1f5821337fa09a2293a11f0d2a030311165c8a37aa2bfaacf465fd34060a7348769ceda6c27454805a432d34997c6 WHIRLPOOL 3deaf67884e8f77dad101f19e12bd55af4f4ecf4cd2fae2c4931ce25d5dda5617c2a154459f7ecd40ecfbc2620c6df8127c184753818abdb5b757eed35ba237d
-DIST tango-gentoo-v1.1.tar.gz 29322 SHA256 518efa4257c8e689488399db23397a89f4dcd5990ce537ef6215860ad5606eb0 SHA512 87d47ddab68361db6d99866c51705dcb3e198f8345a1096859acf2c6cca5099dd23c7fb30d124f52c4933ea38fd45fadffbbe6ecbdfa84f5b60938a4824f9045 WHIRLPOOL 9e1635a505ea48f4fe8bdb3b8b3b43cfb9cf99e3204194c51361b198886e719921cfacbc15f9f6407aa7d0c4af178e24c74b998fc370fa2329040e5be1baf153
-EBUILD mint-x-icons-1.0.7.ebuild 826 SHA256 95838116f56bdfdce74072a3c878914720d4207be3d073309d37fd359e4392a8 SHA512 0d408cd0c24807bd4c073cdc1ed6c3ac63c48722d5362b1acbfe7482f7488fd9107cfa4d5658b25ba3b95721568d3815bace674e9ec3e3431508764a338811c6 WHIRLPOOL a0f611b621445578f151b6b16b16880b9efd2e2c646535028168f72bb9e775417853880ce31869a0e6353f8a7a45a6184ed29234fc33cacc7bbe1d5444b8b030
-EBUILD mint-x-icons-1.1.1.ebuild 2095 SHA256 dfda4b61fe866d287a3bf1746863a342a0022ff5ebd77e1873be4db88c22d173 SHA512 83f4ced164d4293513fd25e24531063c600044b09775535b98be95b5652892b831e28ca9e629454c02b77d73f076a06d162406f8565321b480db32bd7c670b35 WHIRLPOOL 2e82fa84dbe52ae9207660db708bc06095e056f3d021ae2ca7df391204ed32bce9749d692bfd5a4b8cd637cfdbb1d5d42592f5bd7965cb0546db65beb812de87
Index: x11-themes/mint-x-icons/mint-x-icons-1.0.7.ebuild
===================================================================
--- x11-themes/mint-x-icons/mint-x-icons-1.0.7.ebuild (revision 238)
+++ x11-themes/mint-x-icons/mint-x-icons-1.0.7.ebuild (nonexistent)
@@ -1,34 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-EAPI="4"
-
-inherit gnome2-utils
-
-DESCRIPTION="Mint-X Icon themes"
-HOMEPAGE="http://packages.linuxmint.com/pool/main/m/mint-x-icons/"
-SRC_URI="http://packages.linuxmint.com/pool/main/m/${PN}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-
-RESTRICT="binchecks strip"
-
-S=${WORKDIR}
-
-src_install() {
- insinto /usr/share/icons
- doins -r mint-x-icons/usr/share/icons/Mint-X{,-Dark} || die
- insinto /usr/share/pixmaps
- doins -r mint-x-icons/usr/share/pixmaps/pidgin || die
- dodoc mint-x-icons/debian/changelog mint-x-icons/debian/copyright
-}
-
-pkg_preinst() { gnome2_icon_savelist; }
-pkg_postinst() { gnome2_icon_cache_update; }
-pkg_postrm() { gnome2_icon_cache_update; }
Index: x11-themes/mint-x-icons/mint-x-icons-1.1.1.ebuild
===================================================================
--- x11-themes/mint-x-icons/mint-x-icons-1.1.1.ebuild (revision 238)
+++ x11-themes/mint-x-icons/mint-x-icons-1.1.1.ebuild (nonexistent)
@@ -1,63 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-EAPI="4"
-
-inherit gnome2-utils
-
-DESCRIPTION="Mint-X Icon themes"
-HOMEPAGE="http://packages.linuxmint.com/pool/main/m/mint-x-icons/"
-SRC_URI="http://packages.linuxmint.com/pool/main/m/${PN}/${PN}_${PV}.tar.gz
- branding? ( http://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz )"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="branding"
-
-RDEPEND=""
-
-RESTRICT="binchecks strip"
-
-S=${WORKDIR}
-
-src_prepare() {
- # Removing symlink to not existing file
- for i in 16 22 24 32 48; do
- rm "${S}"/${PN}/usr/share/icons/Mint-X/apps/${i}/internet-mail.png
- done
- rm "${S}"/${PN}/usr/share/icons/Mint-X/apps/scalable/internet-mail.svg
- # Fixing files that makes gtk-icon-cache-update to crash
- rm "${S}/${PN}/usr/share/icons/Mint-X/apps/scalable/cairo-dock -o.svg"
- cd "${S}"/${PN}/usr/share/icons/Mint-X/apps/scalable/
- mv "cairo-dock -c.svg" "cairo-dock.svg"
- # Installing gentoo logos
- if use branding; then
- for i in 16 22 24 32 48; do
- cp "${WORKDIR}"/tango-gentoo-v1.1/${i}x${i}/gentoo.png \
- "${S}"/${PN}/usr/share/icons/Mint-X/places/${i}/start-here.png \
- || die "Copying gentoo logos failed"
- done
- for i in 22 24; do
- cp "${WORKDIR}"/tango-gentoo-v1.1/${i}x${i}/gentoo.png \
- "${S}"/${PN}/usr/share/icons/Mint-X-Dark/places/${i}/start-here-gentoo.png \
- || die "Copying gentoo logos failed"
- rm "${S}"/${PN}/usr/share/icons/Mint-X-Dark/places/${i}/start-here.png
- cd "${S}"/${PN}/usr/share/icons/Mint-X-Dark/places/${i}/
- ln -s start-here-gentoo.png start-here.png
- done
- fi
-}
-
-src_install() {
- insinto /usr/share/icons
- doins -r mint-x-icons/usr/share/icons/Mint-X{,-Dark}
- insinto /usr/share/pixmaps
- doins -r mint-x-icons/usr/share/pixmaps/pidgin
- dodoc mint-x-icons/debian/changelog mint-x-icons/debian/copyright
-}
-
-pkg_preinst() { gnome2_icon_savelist; }
-pkg_postinst() { gnome2_icon_cache_update; }
-pkg_postrm() { gnome2_icon_cache_update; }
Index: app-misc/concordance/concordance-0.23.ebuild
===================================================================
--- app-misc/concordance/concordance-0.23.ebuild (revision 238)
+++ app-misc/concordance/concordance-0.23.ebuild (nonexistent)
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-DESCRIPTION="Linux client for programming the Logitech Harmony universal remote"
-HOMEPAGE="http://www.phildev.net/concordance/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-RDEPEND="=dev-libs/libconcord-${PV} \
- >=dev-libs/libusb-0.1.12-r1"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/${PN}"
-
-src_compile() {
- econf || die "configure failed"
- emake DESTDIR="${D}" || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ../Changelog ../LICENSE README
-}
-
-pkg_postinst() {
- einfo "Set up your remote by visiting members.harmonyremote.com."
- einfo "Click 'Update Remote' to receive Connectivity.EZHex, which"
- einfo "verifies connectivity to the remote. Run it with:"
- echo
- einfo " concordance --connectivity-test Connectivity.EZHex"
- echo
- einfo "Return to your browser and click to the next screen to receive"
- einfo "Update.EZHex, which contains the new configuration. Run it with:"
- echo
- einfo " concordance --write-config Update.EZHex"
-}
-
Index: app-misc/concordance/concordance-0.24.ebuild
===================================================================
--- app-misc/concordance/concordance-0.24.ebuild (revision 238)
+++ app-misc/concordance/concordance-0.24.ebuild (nonexistent)
@@ -1,42 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-DESCRIPTION="Linux client for programming the Logitech Harmony universal remote"
-HOMEPAGE="http://www.phildev.net/concordance/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-RDEPEND="=dev-libs/libconcord-${PV} \
- >=dev-libs/libusb-0.1.12-r1"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P}/${PN}"
-
-src_compile() {
- econf || die "configure failed"
- emake DESTDIR="${D}" || die "make failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc ../Changelog ../LICENSE README
-}
-
-pkg_postinst() {
- einfo "Set up your remote by visiting members.harmonyremote.com."
- einfo "Click 'Update Remote' to receive Connectivity.EZHex, which"
- einfo "verifies connectivity to the remote. Run it with:"
- echo
- einfo " concordance --connectivity-test Connectivity.EZHex"
- echo
- einfo "Return to your browser and click to the next screen to receive"
- einfo "Update.EZHex, which contains the new configuration. Run it with:"
- echo
- einfo " concordance --write-config Update.EZHex"
-}
-
Index: app-misc/concordance/Manifest
===================================================================
--- app-misc/concordance/Manifest (revision 238)
+++ app-misc/concordance/Manifest (nonexistent)
@@ -1,4 +0,0 @@
-DIST concordance-0.23.tar.bz2 991468 SHA256 47aaaad4e7f7e11ca0bbf9817c459ef7a7979cc9ecd73ac7eddcffb0063efc9f
-DIST concordance-0.24.tar.bz2 1082955 SHA256 e2bea0430e936fd9e3e6a853b6533edbfd9211cf328c5334789b432035f03656 SHA512 d49af8fed94199dd183085dc013ad35801dd98283ee7e6c46e07a1fbea50d078201f51ab32cb92c3a8bf3d9099b3b6ae3d9aba05211570e76227c995e724323a WHIRLPOOL 282770806c300ed9510dea01c0baad1829492cc4ddf672de6dd34cf0b99c6ea69fc0e278ea63f5762687a0146bc9d384956e4607286edb96c18613630fdb54e6
-EBUILD concordance-0.23.ebuild 1168 SHA256 4221f2089e23894ce358c4ef63fd22e02449fba9ccb69493c5b2c731e1257581 SHA512 4f2f9147ea2e13de6ed34ad2c5efef08f6f05d0ae5fb7a87222970a4aea413786da2451cdaec5d0984ceb89ec725da5947cfe1176c7d6c0a59566c6ab169b80d WHIRLPOOL 361dc8989e4b7bd33087bb57459f844a8fe51c1d7f6293ae08b8d86cab0eb2381a182e96a51088f34a59f2de334249bbd96d606c8c30a36f092461bbce7ccc21
-EBUILD concordance-0.24.ebuild 1168 SHA256 4221f2089e23894ce358c4ef63fd22e02449fba9ccb69493c5b2c731e1257581 SHA512 4f2f9147ea2e13de6ed34ad2c5efef08f6f05d0ae5fb7a87222970a4aea413786da2451cdaec5d0984ceb89ec725da5947cfe1176c7d6c0a59566c6ab169b80d WHIRLPOOL 361dc8989e4b7bd33087bb57459f844a8fe51c1d7f6293ae08b8d86cab0eb2381a182e96a51088f34a59f2de334249bbd96d606c8c30a36f092461bbce7ccc21
Index: app-misc/congruity/Manifest
===================================================================
--- app-misc/congruity/Manifest (revision 238)
+++ app-misc/congruity/Manifest (nonexistent)
@@ -1,2 +0,0 @@
-DIST congruity-15.tar.bz2 156839 SHA256 87db67d9c6f2d578104936bb17e2d330aee96ec3a94a5c20972bfa4cb463a74f
-EBUILD congruity-15.ebuild 615 SHA256 54c0875fa3e64a9f8e418bf40f91d3958b407d364b209833a4c2dfbfa6039666 SHA512 9b807b2b3cfe9ee285b49778f1fa85cd3fc5800104a5555c0dee8cd16ac03471f66e3a6fbda5684eabe3f536dfc91393b1ccf9f75162bb669ae07600e3c1b895 WHIRLPOOL d528fb1506e82aa9113b66d7657c640ecbaceb894b00fad3b2b3961951aefd4ec37587f3a9ea95eb76d97268f5c1a6eb965be87b0cdbc100cf743921a755267b
Index: app-misc/congruity/congruity-15.ebuild
===================================================================
--- app-misc/congruity/congruity-15.ebuild (revision 238)
+++ app-misc/congruity/congruity-15.ebuild (nonexistent)
@@ -1,24 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-DESCRIPTION="Linux GUI client for programming the Logitech Harmony universal remote"
-HOMEPAGE="http://sourceforge.net/projects/congruity/"
-SRC_URI="mirror://sourceforge/congruity/${P}.tar.bz2"
-
-LICENSE="GPL"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND="dev-libs/libconcord dev-lang/python dev-python/wxpython"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- sed -i "s/\/usr\/local/\/usr/g" ${S}/Makefile
-}
-
-src_install() {
- emake DESTDIR=${D} UPDATE_DESKTOP_DB="" install || die "install failed"
-}
-
Index: games-rpg/amnesia-tdd/Manifest
===================================================================
--- games-rpg/amnesia-tdd/Manifest (revision 238)
+++ games-rpg/amnesia-tdd/Manifest (nonexistent)
@@ -1,3 +0,0 @@
-DIST amnesia_tdd_1.2.sh 1154028527 SHA256 73820ca56f6119683d4a4862d0d79be2c566808c73ac114cd17e1f81ff873a5b SHA512 3021161fcf1033cd724a382b3145cc93f02cfaed98c0807b86eaec96c1ffbfdd1f661021082f4e3920616ea0910097c2212d355fa363a1b01f355a49557a135b WHIRLPOOL 3573779bd42f27e8f0994b08bc4a409efde85245ade72f200ed854b1872d067d8ae8f8bdc54b409e9fd56d01f6968246fa9cf1bd3737fea92d6a586e2441b408
-EBUILD amnesia-tdd-1.2.ebuild 7444 SHA256 df155fc42fdba5fb2bdb817f5f4cde73e0bd27a196dce8a4a47fa341c0594ef4 SHA512 b1564a7e7aab28acc8db1c856b834192a49a652bf850487958aa7a0808845e966d1c349fdcd729b2dd1ac48b15ff3d6bf0e79f7d8fe3955b1982766a32a97781 WHIRLPOOL 09f5c92f656e975c63ffc7e76c7adbba45a9cbe9cedb4c5634cef37c901f013967e5e80076928396acbed0599f539780dcaaefabf655a3b036e14325ee976cf8
-MISC metadata.xml 269 SHA256 fc12630dd2d15a11f495bb37421056ac60b743c02441a98c848e9be0ec8f0dc2 SHA512 90d31d3e3f8f4391684ff13b0858c7b328de4b6554b34d83414ab308a976169eda8670e260f9ebd85d7dc51a051fa097290398e964d6e37f3e47383551086993 WHIRLPOOL 6d8c1c7821389d0de5a89087f5a21950e2fc91cae7fde3b3cb60483ab4cb24dd7650b1b4ac52a030cb0cdc7185294da7bd10d1b18f34e6f3dfc5466043c92a83
Index: games-rpg/amnesia-tdd/amnesia-tdd-1.2.ebuild
===================================================================
--- games-rpg/amnesia-tdd/amnesia-tdd-1.2.ebuild (revision 238)
+++ games-rpg/amnesia-tdd/amnesia-tdd-1.2.ebuild (nonexistent)
@@ -1,291 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-inherit check-reqs eutils games unpacker
-
-MY_PN="${PN//-/_}"
-#MY_REV="-2"
-MY_ARCH="${ARCH/amd64/x86_64}"
-
-DESCRIPTION="Amnesia: The Dark Descent is a first person survival horror. A game about immersion, discovery and living through a nightmare."
-HOMEPAGE="http://www.amnesiagame.com/"
-SRC_URI="${MY_PN}_${PV}.sh"
-
-RESTRICT="fetch strip"
-LICENSE="Frictional_Games-EULA"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc linguas_de linguas_es linguas_fr linguas_it linguas_ru"
-
-DEPEND="app-arch/xz-utils"
-RDEPEND="media-libs/freealut
- >=media-libs/glew-1.5
- virtual/jpeg:62
- media-libs/libpng:1.2
- media-libs/libtheora
- media-libs/libvorbis
- media-libs/openal
- media-libs/sdl-image
- media-libs/sdl-ttf
- sys-libs/zlib
- x11-libs/libxcb
- x11-libs/libXext
- virtual/glu
- virtual/opengl"
-
-CHECKREQS_DISK_BUILD="3500M"
-
-S="${WORKDIR}/${PN}"
-
-GAMEDIR="${GAMES_PREFIX_OPT}/${PN}"
-
-pkg_nofetch() {
- einfo ""
- einfo "Please buy and download \"${SRC_URI}\" from:"
- einfo " ${HOMEPAGE}"
- einfo "and move/link it to \"${DISTDIR}\""
- einfo ""
-}
-
-pkg_setup() {
- games_pkg_setup
-}
-
-src_unpack() {
- einfo "\nUnpacking files. This will take several minutes.\n"
- mkdir "${S}" || die "mkdir "${S}" failed"
- cd "${S}" || die "cd '${S}' failed"
-
- unpack_makeself || die "unpack_makeself failed"
-
- mv "subarch" "installer.tar.lzma" || die "move \"subarch\" failed"
- unpack "./installer.tar.lzma" || die "unpack \"installer.tar.lzma\" failed"
-
- mv "instarchive_all" "../${P}.tar.lzma" || die "move 'instarchive_all' failed"
- mv "instarchive_all_${MY_ARCH}" "../${P}-${MY_ARCH}.tar.lzma" || die "move 'instarchive_all_${MY_ARCH}' failed"
-
- cd "${WORKDIR}" || die "cd '${WORKDIR}' failed"
-
- echo ">>> Unpacking ./${P}.tar.lzma to ${WORKDIR}"
- #Standard unpack fails due to poor quality of archive
- xz -F lzma -d -c "./${P}.tar.lzma" 2>/dev/null | tar xf - || die "unpacking '${P}.tar.lzma' failed"
- rm "./${P}.tar.lzma"
-
- unpack "./${P}-${MY_ARCH}.tar.lzma" || die "unpack '${P}-${MY_ARCH}.tar.lzma' failed"
- rm "./${P}-${MY_ARCH}.tar.lzma"
-}
-
-src_prepare() {
- # libfltk.so.1.1 is needed because it's no longer in portage
- mv "${WORKDIR}"/Amnesia/libs*/all/libfltk* "${WORKDIR}"/Amnesia/libs*/ || die "libfltk extraction failed"
-
- #reset ${S} for outprocessing
- rm -rf "${S}"
- mv "${WORKDIR}/Amnesia" "${S}" || die "mv 'Amnesia' failed"
- cd ${S}
-
- # Files to remove.
- REMOVE="libs*/*
- *.pdf
- *.rtf
- *.sh"
-
- # Files to keep.
- # Bundled LibIL (media-libs/devil) isn't in portage as too old
- KEEP="libs*/libIL*
- libs*/libfltk*"
-
- # Collect infos about languages...
- LINGUAS_ARRAY=() # Linguas - string: E.g.: "linguas_en"
- LANG_ARRAY=() # Lang - string: E.g.: "en"
- LANGUAGE_ARRAY=() # Language - string: E.g.: "english"
- LANGUAGE_SHORT_ARRAY=() # Language Short - string: E.g.: "eng"
- USE_ARRAY=() # Used - bool (0,1)
-
- local linguas_in_use="0"
- for use in ${IUSE}
- do
- if [[ "${use%%_*}" == "linguas" ]]
- then
- local tmp="${use}"
- LINGUAS_ARRAY=(${LINGUAS_ARRAY[@]} "${tmp}")
-
- tmp="${tmp##linguas_}"
- LANG_ARRAY=(${LANG_ARRAY[@]} "${tmp}")
-
- case "${tmp}" in
- "de") tmp="german";;
- "es") tmp="spanish";;
- "fr") tmp="french";;
- "it") tmp="italian";;
- "ru") tmp="russian";;
- *) tmp="";;
- esac
- LANGUAGE_ARRAY=(${LANGUAGE_ARRAY[@]} "${tmp}")
- LANGUAGE_SHORT_ARRAY=(${LANGUAGE_SHORT_ARRAY[@]} "${tmp:0:3}")
-
- if use ${use}
- then
- USE_ARRAY=(${USE_ARRAY[@]} "1")
- linguas_in_use="$(( ${linguas_in_use} + 1 ))"
- else
- USE_ARRAY=(${USE_ARRAY[@]} "0")
- fi
- fi
- done
-
- # ...then process them.
- local n="0"
- local docs_eng="0"
- while [[ "${n}" -lt "${#LINGUAS_ARRAY[@]}" ]]
- do
- if [[ "${USE_ARRAY[${n}]}" -gt "0" ]]
- then
- # If only one lang is selected, use it as default.
- if [[ "${linguas_in_use}" == "1" ]]
- then
- sed -e "s#english.lang#${LANGUAGE_ARRAY[${n}]}.lang#g" \
- -i config/*main_init.cfg || die "sed \"config/*main_init.cfg\" failed"
- fi
- else
- REMOVE="${REMOVE} $(find config -type f -name "*${LANGUAGE_ARRAY[${n}]}.lang")"
- if [[ -d "lang/${LANGUAGE_SHORT_ARRAY[${n}]}" ]]
- then
- REMOVE="${REMOVE} lang/${LANGUAGE_SHORT_ARRAY[${n}]}"
- fi
- fi
-
- if use doc
- then
- if [[ -f "EULA_${LANG_ARRAY[${n}]}.rtf" && -f "Manual_${LANG_ARRAY[${n}]}.pdf" ]]
- then
- KEEP="${KEEP} EULA_${LANG_ARRAY[${n}]}.rtf Manual_${LANG_ARRAY[${n}]}.pdf"
- else
- local docs_eng="1"
- fi
- fi
-
- n="$(( ${n} + 1 ))"
- done
-
- if use doc && [[ ( "${linguas_in_use}" == "0" || "${docs_eng}" != "0" ) ]]
- then
- KEEP="${KEEP} EULA_en.rtf Manual_en.pdf Remember*.pdf"
- fi
-
- einfo " Removing useless files ..."
- for remove in ${REMOVE}
- do
- local removable="1"
- for keep in ${KEEP}
- do
- if [[ "${remove}" == "${keep}" && "${removable}" == "1" ]]
- then
- local removable="0"
- fi
- done
-
- if [[ "${removable}" == "1" ]]
- then
- rm -r "${S}/"${remove} &> /dev/null
- fi
- done
-
- if use amd64
- then
- mv "Amnesia.bin64" "Amnesia.bin" || die "mv \"Amnesia.bin64\" failed"
- mv "Launcher.bin64" "Launcher.bin" || die "mv \"Launcher.bin64\" failed"
- fi
-}
-
-src_install() {
- # Install data
- insinto "${GAMEDIR}"
-
- einfo " Installing game data files ..."
- for directory in $(find * -maxdepth 0 -type d ! -name "libs*")
- do
- doins -r ${directory} || die "doins game data files failed"
- done
-
- # Other files
- find . -maxdepth 1 -type f ! -name "*.bin" \
- ! -name "*.pdf" \
- ! -name "*.png" \
- ! -name "*.rtf" \
- ! -name "*.sh" \
- -exec doins '{}' \; || die "doins other files failed"
-
-
- # Install libraries and executables
- einfo " Installing libraries and executables ..."
-
- if use amd64
- then
- local libsdir="${GAMEDIR}/libs64"
- else
- local libsdir="${GAMEDIR}/libs"
- fi
-
- exeinto "${libsdir}"
- doexe libs*/* || die "doexe \"libs\" failed"
- dosym "/usr/$(get_libdir)/libGLEW.so" "${libsdir}/libGLEW.so.1.5"
-
- exeinto "${GAMEDIR}"
- doexe *.bin || die "doexe \".bin\" binaries failed"
-
- # Make game wrapper
- local wrapper="${S}/${PN}"
- local ext="${PN}-justine"
-
- cat << EOF > "${wrapper}" || die "echo failed"
-#!/bin/sh
-cd "${GAMEDIR}"
-if [[ "\$(basename "\${0}")" == "${ext}" ]]
-then
- params="ptest \${@}"
-fi
-
-if [[ -w "\${HOME}/.frictionalgames/Amnesia/Main/main_settings.cfg" ]]
-then
- exec ./Amnesia.bin \${params:-"\${@}"}
-else
- exec ./Launcher.bin "\${@}"
-fi
-EOF
-
- # Install wrapper
- dogamesbin "${wrapper}" || die "dogamesbin ${wrapper} failed"
- dosym "${PN}" "${GAMES_BINDIR}/${ext}"
-
- # Install icon and desktop file
- newicon "Amnesia.png" "${PN}.png" || die "newicon failed"
- make_desktop_entry "${PN}" "Amnesia: The Dark Descent" "/usr/share/pixmaps/${PN}.png" || die "make_desktop_entry failed"
- make_desktop_entry "${ext}" "Amnesia: The Dark Descent - Justine" "/usr/share/pixmaps/${PN}.png" || die "make_desktop_entry failed"
-
- # Install documentation
- if use doc
- then
- dodoc *.rtf *.pdf || die "dodoc failed"
- fi
-
- # Setting permissions.
- einfo " Setting permissions ..."
- prepgamesdirs
-}
-
-pkg_postinst() {
- ewarn ""
- ewarn "Amnesia: The Dark Descent needs video drivers that provide a complete".
- ewarn "GLSL 1.20 implementation. For more information, please visit:"
- ewarn "http://www.frictionalgames.com/forum/thread-3760.html"
- ewarn ""
- ewarn "--------------------------------------------------------------------"
- ewarn ""
- ewarn "Saved games from previous versions may not be fully compatible."
- ewarn ""
-}
\ No newline at end of file
Index: games-rpg/amnesia-tdd/metadata.xml
===================================================================
--- games-rpg/amnesia-tdd/metadata.xml (revision 238)
+++ games-rpg/amnesia-tdd/metadata.xml (nonexistent)
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>maintainer-wanted</herd>
-<use>
- <flag name='glew-bundled'><Use bundled Glew libraries instead of system ones./flag>
-</use>
-</pkgmetadata>
/games-rpg/amnesia-tdd/metadata.xml
Property changes:
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: games-rpg/pylotro/pylotro-0.2.4.ebuild
===================================================================
--- games-rpg/pylotro/pylotro-0.2.4.ebuild (revision 238)
+++ games-rpg/pylotro/pylotro-0.2.4.ebuild (nonexistent)
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit games distutils-r1
-
-DESCRIPTION="Lord of the Rings Online and Dungeons & Dragons Online Launcher"
-HOMEPAGE="https://github.com/nwestfal/pylotro"
-SRC_URI="https://github.com/nwestfal/pylotro/archive/master.zip -> ${P}.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/PyQt4[webkit,${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-master"
-
-python_install() {
- distutils-r1_python_install \
- --install-scripts="${GAMES_BINDIR}"
- --install-lib="$(python_get_sitedir)"
-}
-
-src_install() {
- distutils-r1_src_install
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- elog
- elog "You will need a proper wine or crossover-game installation to launch"
- elog "the game. You can find more information on how to run these games in"
- elog "Linux by visiting:"
- elog "http://appdb.winehq.org/objectManager.php?sClass=application&iId=4891"
- elog "or http://www.codeweavers.com/compatibility/browse/name/?app_id=4029"
-}
\ No newline at end of file
Index: games-rpg/pylotro/Manifest
===================================================================
--- games-rpg/pylotro/Manifest (revision 238)
+++ games-rpg/pylotro/Manifest (revision 1)
@@ -1,2 +1,2 @@
-DIST pylotro-0.2.4.zip 693159 SHA256 e4f53358922b14e08680aaa5194611a9fbab1cb3ae833cd58da9ea2cf3cc9e6e SHA512 11456c19f96d6906e1c0c27e17afce99c7d385336ba736977cafbacc98826b719abab09f74d41d4eeb30d18116e9ea8f5fbf2c7c77ba8846f2ab52f0bfd590d7 WHIRLPOOL 9e78cf949093e70da1ec5e636d5ab74b9395fa3a0148d02913324a33c6bf27a0c188340fe28dde1174196e641117470bd8bc5817b3672c9eca0c27dac96ce4a3
-EBUILD pylotro-0.2.4.ebuild 1192 SHA256 d68adb1982108f3fe568d51d47766d1d4324d2bd8575195cc3a81ff482859789 SHA512 b86ed8bc2525aecd21cb3c12de2219a819b039eea28aae60061884667c21f567f38c8a50221df9a3439c57fc825be6104e443ecc2acc307e980186a02bf66148 WHIRLPOOL 8018150c0cfa69f9d00808fd7d3751be1cf8109d09349b7dac820dd734c922ee89f8a2d70c1005a603cce50ca9f863ff9b907aaf4e68e7c351f65a5f42a7d60f
+DIST PyLotRO-0.1.11.tar.bz2 519490 RMD160 1adb38b41be21249a86c34dad384e2861cd7e791 SHA1 f61b50448f24dce0823ceeadeeec3ec547692b92 SHA256 5f1c9b8a0cf93886557a87aef2b03aaf49f28439546bc8e8b2bb0dceb4036b4a
+EBUILD pylotro-0.1.11.ebuild 972 RMD160 338f220d9e1de1c66787b69131de24c0f817a725 SHA1 be9422a2cfc7b0c3b826e0d62d7946c762193006 SHA256 f2ddc2df94fb0ccd747ce3a78e9fcab9cd39a9f1d3a18880ed8515d5420c6d1b
Index: games-rpg/pylotro/pylotro-0.1.11.ebuild
===================================================================
--- games-rpg/pylotro/pylotro-0.1.11.ebuild (nonexistent)
+++ games-rpg/pylotro/pylotro-0.1.11.ebuild (revision 1)
@@ -0,0 +1,35 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: kardasa $
+
+EAPI="2"
+
+inherit games distutils
+
+DESCRIPTION="Lord of the Rings Online and Dungeons & Dragons Online Luncher"
+HOMEPAGE="http://www.lotrolinux.com/"
+SRC_URI="http://www.lotrolinux.com/PyLotRO-0.1.11.tar.bz2"
+RESTRICT="mirror"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+DEPEND=">=dev-lang/python-2.5
+ dev-python/PyQt4
+ dev-python/4suite"
+
+RDEPEND="${DEPEND}"
+
+src_install() {
+ distutils_src_install
+ rm ${D}/usr/bin/pylotro
+ dogamesbin ${PN} || die "dogamesbin failed"
+ prepgamesdirs
+}
+
+pkg_postinst() {
+ elog "You will need a proper wine or crossover-game"
+ elog "installation to lunch the game"
+ elog "more information how to run the games in linux you will find by visiting:"
+ elog "http://www.codeweavers.com/compatibility/browse/group/?app_parent=4029"
+ elog "or http://appdb.winehq.org/objectManager.php?sClass=version&iId=14566"
+}
Index: media-gfx/sweethome3d-bin/sweethome3d-bin-4.1.ebuild
===================================================================
--- media-gfx/sweethome3d-bin/sweethome3d-bin-4.1.ebuild (revision 238)
+++ media-gfx/sweethome3d-bin/sweethome3d-bin-4.1.ebuild (nonexistent)
@@ -1,45 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-# This ebuild is a modified version of ebuild from java overlay.
-
-EAPI="4"
-inherit eutils
-
-ICON="sweethome3d"
-MY_PN="SweetHome3D"
-
-DESCRIPTION="Sweet Home 3D is a free interior design application."
-HOMEPAGE="http://sweethome3d.sourceforge.net/"
-SRC_URI="amd64? ( mirror://sourceforge/sweethome3d/${MY_PN}-${PV}-linux-x64.tgz )
- x86? ( mirror://sourceforge/sweethome3d/${MY_PN}-${PV}-linux-x86.tgz )
- http://dev.gentoo.org/~fordfrog/distfiles/${ICON}.png"
-LICENSE="GPL-3"
-IUSE=""
-SLOT="0"
-
-RESTRICT="strip"
-
-
-KEYWORDS="~amd64 ~x86"
-
-DEPEND=">=virtual/jre-1.6
- !media-gfx/sweethome3d"
-
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-
-
-src_install() {
-
- dodir /opt/sweethome3d-bin
- cp -r ${S}/* ${D}/opt/sweethome3d-bin/
- dosym /opt/sweethome3d-bin/${MY_PN} /usr/bin/${MY_PN}
-
- doicon "${DISTDIR}"/${ICON}.png
-
- make_desktop_entry ${MY_PN} "${MY_PN}" "${ICON}"
-}
-
Index: media-gfx/sweethome3d-bin/Manifest
===================================================================
--- media-gfx/sweethome3d-bin/Manifest (revision 238)
+++ media-gfx/sweethome3d-bin/Manifest (nonexistent)
@@ -1,4 +0,0 @@
-DIST SweetHome3D-4.1-linux-x64.tgz 47823352 SHA256 c2d44add9debce7c276a2204874b12eb48aa4f18824565abe8a6b40961caa888 SHA512 f84e5e14d14c0c2c9a9b2a0796ff15abe1b2a0ad5f26fa87a6a34e8568bd80d897c1092d35b61e55d5f5b67cb941202b93b5d19c8ab6dac9133493a567e3d212 WHIRLPOOL 2794063fc8fbada4df4835150c524864d9ea901411548792a9aa05e60fd74355422c5473849ce4e9a166991452e5daa77828a5592f6d326e021e20ab133f0229
-DIST SweetHome3D-4.1-linux-x86.tgz 53834280 SHA256 a2ce381a1eeafb8f60ec41fa1ddb63ed43a7ac7e75edfa03cba302eab733c02c SHA512 342140c352f2dc7f8e4493620c7c519e2d5003f329838e0be88aba489a9a4da0ef5f22b79d4ecea9c87a3b15ce00805b192aa2879efd1f0bc2d1672ec0497f63 WHIRLPOOL 19822258a6d945579188d384ea092368b31eaace833793f74eb9a5d3356678bbe996e6b53bab3602fe42ca8f92ef0b24f0503489fb3ffb87d52cf42478adbdd3
-DIST sweethome3d.png 6828 SHA256 5cc20b9b82b84d1d85dc776e77d1399bfad136fc032d3f6c9fe1f06cdba33855 SHA512 5582051094b3d49fba3daa50d581140cac5c4f7b30c868eb88b767cebbcea09d692811091969ec1b8cf8cdf81db51dd215a48c3f1e29ab037ce9f77d187c4925 WHIRLPOOL bec009fdd431a7a2180dd4d5264b6649e4a37e71e823961cd5d5c898319726c42c0538303769080eb49e9f2934ad06b82e2f0d53404c849b3d4f0f0249974462
-EBUILD sweethome3d-bin-4.1.ebuild 995 SHA256 4c2f282fa9c95e7fec9c610048f436f29c4008453936e96aaef54d02bae7e0de SHA512 28fd635cbe2b7c61174ce8bf8382b23e8ed865f01b6f8de46c6c4b2948ef009259f5e4049cf4e25e2e80cff931616e21b9f28e112677a68d1fe8c605a804e85c WHIRLPOOL 4fe8b378d6d82775a2c89345b6e2d021a9da5c3d68de80f362177e1d6f9c104fdd57f316dcb1a037e927bab075f22e716c116fa1ca4d2cda8827d9ff72d1d94e
Index: media-gfx/iscan-plugin-gt-x750/iscan-plugin-gt-x750-2.1.2.1.ebuild
===================================================================
--- media-gfx/iscan-plugin-gt-x750/iscan-plugin-gt-x750-2.1.2.1.ebuild (revision 238)
+++ media-gfx/iscan-plugin-gt-x750/iscan-plugin-gt-x750-2.1.2.1.ebuild (nonexistent)
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header:
-
-EAPI="4"
-
-inherit rpm versionator multilib
-
-MY_PV="$(get_version_component_range 1-3)"
-MY_PVR="$(replace_version_separator 3 -)"
-
-DESCRIPTION="Epson Perfection 4490 PHOTO scanner plugin for SANE 'epkowa' backend."
-HOMEPAGE="http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX"
-SRC_URI="
- x86? ( http://www.kardasa.pl/downloads/avasys/${PN}/${PN}-${MY_PVR}.i386.rpm )
- amd64? ( http://www.kardasa.pl/downloads/avasys/${PN}/${PN}-${MY_PVR}.x86_64.rpm )
-"
-
-LICENSE="AVASYS"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-
-IUSE=""
-
-DEPEND=">=media-gfx/iscan-2.21.0"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-QA_PREBUILT="/usr/$(get_libdir)/libesint54.so*"
-
-src_configure() { :; }
-src_compile() { :; }
-
-src_install() {
- # install scanner firmware
- insinto /usr/share/iscan
- doins "${WORKDIR}/usr/share/iscan/"*
-
- dodoc usr/share/doc/*/*
-
- # install scanner plugins
- exeinto /usr/$(get_libdir)/iscan/
- doexe "${WORKDIR}/usr/$(get_libdir)/iscan/"*
-}
-
-pkg_postinst() {
- local MY_LIB="/usr/$(get_libdir)"
-
- # Needed for scaner to work properly.
- iscan-registry --add interpreter usb 0x04b8 0x0119 "${MY_LIB}/iscan/libesint54 /usr/share/iscan/esfw54.bin"
- elog
- elog "Firmware file esfw54.bin for Epson Perfection 4490 Photo"
- elog "has been installed in /usr/share/iscan."
- elog
-
-}
-
-pkg_postrm()
-{
- local MY_LIB="/usr/$(get_libdir)"
- iscan-registry --remove interpreter usb 0x04b8 0x0119 "${MY_LIB}/iscan/libesint54 /usr/share/iscan/esfw54.bin"
-}
Index: media-gfx/iscan-plugin-gt-x750/Manifest
===================================================================
--- media-gfx/iscan-plugin-gt-x750/Manifest (revision 238)
+++ media-gfx/iscan-plugin-gt-x750/Manifest (revision 1)
@@ -1,6 +1,3 @@
-DIST iscan-plugin-gt-x750-2.1.0-5.c2.i386.rpm 357465 SHA256 4af302f7e06ece19aad687f3cf6f72e848eb75666fa1dc6ea3f231565788c66a
-DIST iscan-plugin-gt-x750-2.1.0-5.c2.x86_64.rpm 175598 SHA256 c24658556c1ffc54c87c1d1dd58c07165eb7f3b712813c988184a1d1005ce87c
-DIST iscan-plugin-gt-x750-2.1.2-1.i386.rpm 357018 SHA256 a4a6a10bc69d109f9aad5b2f0e8fb2615da0035614e9b80d7c1030775c397b15 SHA512 7b4e0c908749cb7c54722e6fc2f8bde5a55a1c96e87c1cc4bd2498f8dc1848aea12c3e25cdd9ec4279cfb1b5ee2f33e02e40a1b0892f9bf56e163efb38787b8a WHIRLPOOL 514bb01b8c0d23d9915836e12f0f3068c5a0986d79f2868b2a4f8c63238ba02d7251fac5e068029548c57fb0295297cd0718c224519642d9a8eb8e45d434d4fd
-DIST iscan-plugin-gt-x750-2.1.2-1.x86_64.rpm 175355 SHA256 0ef53e3468939d6c1b929c9591bd00d57f378c4cba48a86dcfdb87f2c2979f6e SHA512 9acb052776388424444138e4e4b97d236aec1cf41d0f8e6826925dfa1837e36f66daf25949c0f902d04070f3d9661ae7ae7ff163914bdb6bf5d026a75ae3c137 WHIRLPOOL 20aeeaff74beb6e81a08e8df7a0c6b98f3b6461557eb7b479b9cd1ae3240a7d3a6ee1c68e96b0fa2f665f067f955582538c1538902bbbf3c26e4722837924747
-EBUILD iscan-plugin-gt-x750-2.1.0.ebuild 1710 SHA256 8e924c15a4946bb3681fb59e000dd00c61ad518aff68247e66bffc33bf1a8318 SHA512 96beb5e2b78b150679b35a822e1cf8d90f8ae2c41f311164cdb2ac2734936525dda8fa1cad50e367c656c6f86a28c2d8bf7d4e82c49ed35c238e9d9363a694bf WHIRLPOOL 51f0c4ad3a78757d7fe5c0562748dab1f5b989912bbba2790857866f414c04ce709cf09619d5a5c2794616fddf034b7933093547dd27e960ffcf4732691575bd
-EBUILD iscan-plugin-gt-x750-2.1.2.1.ebuild 1563 SHA256 3e7ec6d6ceba8b6f376d024c0d35bbb00ad896797b81e76ad4f39dc6f7ef932d SHA512 5993eb76ea5c7ef3438462c396b50253bb37204d952d6bc70548f5b287ba072784ab3b638e02b64fe6f9ecf180e4cc3a7e489f265cf6c7fb0c1ea4c0694f78b6 WHIRLPOOL 0e2856ff11ed1efff7ef523e641adb036bc16371e2e07fd6e365d46b140d2f316a29add9e1e4acce98664dbcc3c082a7b996c2f83b57424b8df4fb98d9a5f7bf
+DIST iscan-plugin-gt-x750-2.1.0-5.c2.i386.rpm 357465 RMD160 972ab825a186985c1d1a3f61ad5db6c00b1054c9 SHA1 7673bf596fe54ec473034a00b0fec44843a12b74 SHA256 4af302f7e06ece19aad687f3cf6f72e848eb75666fa1dc6ea3f231565788c66a
+DIST iscan-plugin-gt-x750-2.1.0-5.c2.x86_64.rpm 175598 RMD160 fd0b26091e528ac21e09e7736add5f4e76b05f3d SHA1 4d039686451a1fad7f50b0678413a9605cdb4ab0 SHA256 c24658556c1ffc54c87c1d1dd58c07165eb7f3b712813c988184a1d1005ce87c
+EBUILD iscan-plugin-gt-x750-2.1.0.ebuild 1710 RMD160 a8fdf86bdede22a7aa750202e3926643d353d074 SHA1 59cded8091259c929af173934fb67c6b8f044ea2 SHA256 8e924c15a4946bb3681fb59e000dd00c61ad518aff68247e66bffc33bf1a8318
Index: media-sound/perl-audio-converter/metadata.xml
===================================================================
--- media-sound/perl-audio-converter/metadata.xml (revision 238)
+++ media-sound/perl-audio-converter/metadata.xml (nonexistent)
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>maintainer-wanted</herd>
-<use>
- <flag name='amarok'>Enables integration with amarok</flag>
- <flag name='dolphin'>Enables integration with dolphin</flag>
- <flag name='twolame'>Enables twolame support (MPEG Audio Layer 2 encoder)</flag>
- <flag name='bladeenc'>Enables bladeenc support (An mp3 encoder)</flag>
- <flag name='mac'>Enables mac support (Monkey's Audio Codecs)</flag>
- <flag name='faac'>Use external faac library for AAC encoding</flag>
- <flag name='faad'>Use external faad library for AAC decoding</flag>
- <flag name='tta'>Enable TTA (True-Audio Loseless) support</flag>
-</use>
-</pkgmetadata>
/media-sound/perl-audio-converter/metadata.xml
Property changes:
Deleted: svn:mime-type
## -1 +0,0 ##
-text/plain
\ No newline at end of property
Index: media-sound/perl-audio-converter/Manifest
===================================================================
--- media-sound/perl-audio-converter/Manifest (revision 238)
+++ media-sound/perl-audio-converter/Manifest (nonexistent)
@@ -1,3 +0,0 @@
-DIST pacpl-4.0.5.tar.gz 110384 RMD160 f1dcdea80577191eb9a3498ac2962163ae1357d2 SHA1 20c62274404cc8bee6facefef306998ba565fcb6 SHA256 e6b3ff88acde0bdd7cb4469064afd58cce7fd6463b615713ff36caadbc668de7
-EBUILD perl-audio-converter-4.0.5.ebuild 1762 RMD160 711571c56780c8962b3e5c42c678307260aa59c0 SHA1 d930bb3b6cd0145a46251a471e919e82960c4db5 SHA256 c9285cb16911ec5785e7be5cdcc36c9b3fa640e4849d697f5c16daff808bf5d9
-MISC metadata.xml 740 RMD160 4a3b1561e3283a01153d94063de4e406dbad747f SHA1 ce29fadbab735d7dffc84387de8733075ec8bde4 SHA256 6509c92dc469746e9c3ad32417be1f0797506012c7f11770e896428fb8c7f773
Index: media-sound/perl-audio-converter/perl-audio-converter-4.0.5.ebuild
===================================================================
--- media-sound/perl-audio-converter/perl-audio-converter-4.0.5.ebuild (revision 238)
+++ media-sound/perl-audio-converter/perl-audio-converter-4.0.5.ebuild (nonexistent)
@@ -1,66 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-DESCRIPTION="Perl Audio Converter is a tool for converting multiple audio types from one format to another."
-HOMEPAGE="http://pacpl.sourceforge.net"
-SRC_URI="mirror://sourceforge/pacpl/pacpl-${PV}.tar.gz"
-RESTRICT="mirror"
-KEYWORDS="~x86 ~amd64"
-SLOT="0"
-LICENSE="GPL-3"
-IUSE="amarok bladeenc dolphin faac faad flac ffmpeg konqueror lame mac mplayer toolame tta ogg shorten speex wavpack"
-
-
-DEPEND="dev-lang/perl"
-
-RDEPEND="${DEPEND}
- amarok? ( media-sound/amarok )
- dolphin? ( kde-base/dolphin )
- konqueror? ( kde-base/konqueror )
- lame? ( media-sound/lame )
- toolame? ( media-sound/toolame )
- bladeenc? ( media-sound/bladeenc )
- ogg? ( media-sound/vorbis-tools )
- speex? ( media-libs/speex )
- flac? ( media-libs/flac )
- mac? ( media-sound/mac )
- shorten? ( media-sound/shorten )
- sox? ( media-sound/sox )
- faac? ( media-libs/faac )
- faad? ( media-libs/faad2 )
- ffmpeg? ( media-video/ffmpeg )
- mplayer? ( media-video/mplayer )
- tta? ( media-sound/ttaenc )
- wavpack? ( media-sound/wavpack )
- dev-perl/Parse-RecDescent
- dev-perl/Inline
- dev-perl/Devel-Symdump
- dev-perl/Pod-Coverage
- dev-perl/Test-Pod-Coverage
- dev-perl/MP3-Info
- dev-perl/Audio-Musepack
- dev-perl/Audio-WMA
- dev-perl/Audio-FLAC-Header
- dev-perl/MP4-Info
- dev-perl/MP3-Tag
- dev-perl/ogg-vorbis-header
- dev-perl/IO-String
- dev-perl/CDDB_get"
-
-S="${WORKDIR}/pacpl-${PV}"
-
-src_configure() {
- econf \
- --without-d3lphin \
- $(use_with amarok) \
- $(use_with dolphin) \
- $(use_with konqueror konq) \
- || die "configure failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Install failed"
-}
\ No newline at end of file
Index: media-sound/skype-call-recorder/Manifest
===================================================================
--- media-sound/skype-call-recorder/Manifest (nonexistent)
+++ media-sound/skype-call-recorder/Manifest (revision 1)
@@ -0,0 +1,2 @@
+DIST skype-call-recorder-0.8.tar.gz 83842 RMD160 2c3971586054fba55186e35a14534c9064091473 SHA1 b8faade2d893628fd7a5deac5056d6dfaf7082c4 SHA256 b115f728e09602cca7aa51479faa868de1f9b7cf887ed3d7c82f4935309c32c6
+EBUILD skype-call-recorder-0.8.ebuild 549 RMD160 64f1e7f69691af06ca5f7f2c4d25a22a063ac34c SHA1 231b15fefbff50913f56a149287fab81092535e7 SHA256 b21aec993c715e206b249320fdd0f1f3c984e149d9d1a5b88b2dad0308d79b4c
Index: media-sound/skype-call-recorder/skype-call-recorder-0.8.ebuild
===================================================================
--- media-sound/skype-call-recorder/skype-call-recorder-0.8.ebuild (nonexistent)
+++ media-sound/skype-call-recorder/skype-call-recorder-0.8.ebuild (revision 1)
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+
+inherit cmake-utils
+
+DESCRIPTION="Records Skype calls to MP3/Ogg/WAV files"
+HOMEPAGE="http://atdot.ch/scr/"
+SRC_URI="http://atdot.ch/scr/files/${PV}/${P}.tar.gz"
+
+LICENSE="|| ( GPL-2 GPL-3 )"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="debug"
+
+RESTRICT="mirror strip"
+
+DEPEND="
+ media-sound/lame
+ media-libs/id3lib
+ >=media-libs/libvorbis-1.2.0
+ >=x11-libs/qt-gui-4.4:4[dbus]
+ >=x11-libs/qt-dbus-4.4:4
+"
+RDEPEND="${DEPEND}"
Index: net-im/skype/Manifest
===================================================================
--- net-im/skype/Manifest (nonexistent)
+++ net-im/skype/Manifest (revision 1)
@@ -0,0 +1,3 @@
+DIST skype-2.1.0.47.tar.bz2 19748117 RMD160 7b5a3255b6a1db7c622355793ec3e582d9ff2777 SHA1 a0c7918767f01e79c37d4bd4dc085855c111994b SHA256 f4db42b21138ca9d424409f880dd311faa0f5e60003f5bbb82d6006dcfd61971
+DIST skype_static-2.1.0.47.tar.bz2 27323809 RMD160 6e63f345a40bf06d51a9d9d7698bf61992ac93c8 SHA1 aa9a2b6b8bc164ffbaa0141bc0ba7de470792921 SHA256 56b0fa6185661b187a409dc09b99ada3e01fa82aaae5f1048f8a698aa6f86e81
+EBUILD skype-2.1.0.47.ebuild 2484 RMD160 7e9e5129637f45799ca91fbc6dc01768ed5dd11c SHA1 6263ae6f4a8c366ad55b7fd0523eaace124ca9f9 SHA256 ab5095510b590e0916076f7a39bad0c000b932196a91c7b02efc77bdecbf9acb
Index: net-im/skype/skype-2.1.0.47.ebuild
===================================================================
--- net-im/skype/skype-2.1.0.47.ebuild (nonexistent)
+++ net-im/skype/skype-2.1.0.47.ebuild (revision 1)
@@ -0,0 +1,110 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/skype/skype-2.0.0.72.ebuild,v 1.3 2009/04/14 09:38:40 armin76 Exp $
+
+EAPI=2
+
+inherit eutils qt4 pax-utils
+
+DESCRIPTION="A P2P-VoiceIP client."
+HOMEPAGE="http://www.skype.com/"
+
+S_P="${PN}_static-${PV}"
+SRC_URI="
+ !qt-static? ( http://download.${PN}.com/linux/${P}.tar.bz2 )
+ qt-static? ( http://download.${PN}.com/linux/${S_P}.tar.bz2 )
+"
+
+LICENSE="skype-eula"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="qt-static"
+RESTRICT="mirror strip"
+
+DEPEND="amd64? (
+ >=app-emulation/emul-linux-x86-baselibs-2.1.1
+ app-emulation/emul-linux-x86-compat
+ >=app-emulation/emul-linux-x86-soundlibs-2.4
+ >=app-emulation/emul-linux-x86-xlibs-1.2
+ )
+ x86? (
+ >=media-libs/alsa-lib-1.0.11
+ >=sys-libs/glibc-2.4
+ x11-libs/libXScrnSaver
+ x11-libs/libXv
+ qt-static? (
+ media-libs/fontconfig
+ media-libs/freetype
+ x11-libs/libICE
+ x11-libs/libSM
+ x11-libs/libXcursor
+ x11-libs/libXext
+ x11-libs/libXfixes
+ x11-libs/libXi
+ x11-libs/libXinerama
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ x11-libs/libX11
+ )
+ !qt-static? (
+ x11-libs/qt-gui:4[accessibility,dbus]
+ x11-libs/qt-dbus:4
+ x11-libs/libX11
+ x11-libs/libXau
+ x11-libs/libXdmcp
+ )
+ )
+"
+RDEPEND="${DEPEND}"
+
+QA_EXECSTACK="opt/${PN}/${PN}"
+
+use qt-static && S="${WORKDIR}/${S_P}"
+
+src_install() {
+ exeinto /opt/${PN}
+ doexe ${PN} || die
+ fowners root:audio /opt/${PN}/${PN}
+ make_wrapper ${PN} /opt/${PN}/${PN} /opt/${PN} /opt/${PN} /usr/bin
+
+ insinto /opt/${PN}/sounds
+ doins sounds/*.wav || die
+
+ if ! use qt-static ; then
+ insinto /etc/dbus-1/system.d
+ doins ${PN}.conf || die
+ fi
+
+ insinto /opt/${PN}/lang
+ #
+ #There have been some issues were lang is not updated from the .ts files
+ #but if we have qt we can rebuild it
+ #
+ if ! use qt-static ; then
+ lrelease lang/*.ts
+ fi
+
+ doins lang/*.qm || die
+
+ insinto /opt/${PN}/avatars
+ doins avatars/*.png || die
+
+ insinto /opt/${PN}
+ for X in 16 32 48
+ do
+ insinto /usr/share/icons/hicolor/${X}x${X}/apps
+ newins "${S}"/icons/SkypeBlue_${X}x${X}.png ${PN}.png || die
+ done
+
+ dodoc README || die
+
+ # insinto /usr/share/applications/
+ # doins skype.desktop
+ make_desktop_entry ${PN} "Skype VoIP" ${PN} "Network;InstantMessaging;Telephony"
+
+ #Fix for no sound notifications
+ dosym /opt/${PN} /usr/share/${PN}
+
+ # TODO: Optional configuration of callto:// in KDE, Mozilla and friends
+ # doexe skype-callto-handler
+}
Index: profiles/categories
===================================================================
--- profiles/categories (revision 238)
+++ profiles/categories (nonexistent)
@@ -1,7 +0,0 @@
-app-misc
-dev-libs
-dev-python
-games-rpg
-media-gfx
-media-sound
-x11-themes
\ No newline at end of file
Index: profiles/package.mask
===================================================================
--- profiles/package.mask (revision 238)
+++ profiles/package.mask (nonexistent)
@@ -1,32 +0,0 @@
-#Masking wine patched ebuilds
-=app-emulation/wine-1.1.35-r1
-=app-emulation/wine-1.1.36-r1
-=app-emulation/wine-1.1.37-r1
-=app-emulation/wine-1.1.38-r1
-=app-emulation/wine-1.1.40-r1
-=app-emulation/wine-1.1.41-r1
-=app-emulation/wine-1.1.42-r1
-=app-emulation/wine-1.1.43-r1
-=app-emulation/wine-1.1.44-r1
-=app-emulation/wine-1.2_rc2-r1
-=app-emulation/wine-1.2_rc3-r1
-=app-emulation/wine-1.2_rc5-r1
-=app-emulation/wine-1.2-r1
-=app-emulation/wine-1.3.0-r1
-=app-emulation/wine-1.3.1-r1
-=app-emulation/wine-1.3.2-r1
-=app-emulation/wine-1.3.3-r1
-=app-emulation/wine-1.3.4-r1
-=app-emulation/wine-1.3.5-r1
-=app-emulation/wine-1.3.6-r1
-=app-emulation/wine-1.3.7-r1
-=app-emulation/wine-1.3.8-r1
-=app-emulation/wine-1.3.10-r1
-=app-emulation/wine-1.3.11-r1
-=app-emulation/wine-1.3.12-r1
-=app-emulation/wine-1.3.13-r1
-=app-emulation/wine-1.3.14-r1
-=app-emulation/wine-1.3.15-r1
-=app-emulation/wine-1.3.17-r1
-=app-emulation/wine-1.3.18-r1
-
Index: profiles/license_groups
===================================================================
--- profiles/license_groups (revision 238)
+++ profiles/license_groups (nonexistent)
@@ -1 +0,0 @@
-EULA Frictional_Games-EULA
\ No newline at end of file
Index: profiles/cotegories
===================================================================
--- profiles/cotegories (nonexistent)
+++ profiles/cotegories (revision 1)
@@ -0,0 +1,5 @@
+games-rpg
+media-gfx
+media-sound
+net-im
+x11-plugins
\ No newline at end of file
Index: x11-plugins/pidgin-gfire/Manifest
===================================================================
--- x11-plugins/pidgin-gfire/Manifest (nonexistent)
+++ x11-plugins/pidgin-gfire/Manifest (revision 1)
@@ -0,0 +1,3 @@
+DIST pidgin-gfire-0.8.3.tar.gz 343713 RMD160 9b85bdd9e1bc04e4176d1162166051fd992212c1 SHA1 a12ac4a4382c861cc1bd0a72684803d52b32e026 SHA256 916390b3a2665d9bf53687b9f062a49614e407426d3ddc7c7b2e461a40ee6b4e
+EBUILD pidgin-gfire-0.8.3.ebuild 783 RMD160 739be2104ae2096fd8c26dd8fe4091e117fbcd99 SHA1 5df3cc112c33f858021bd98cb143d17878c5c31d SHA256 a3188e4822a41daaa8f16937f030dbfe3b24f41289c4369ff6141c353ed203b5
+EBUILD pidgin-gfire-9999.ebuild 819 RMD160 4a65c9a8f1d03b63c673970e54f28b8a8adbf05f SHA1 97f869ae3e7926cf4f645bac26129101f580ec5a SHA256 64c0a8430c402e3f801f122104399c3648384220f5ed380e7d64228fee86afd5
Index: x11-plugins/pidgin-gfire/pidgin-gfire-0.8.3.ebuild
===================================================================
--- x11-plugins/pidgin-gfire/pidgin-gfire-0.8.3.ebuild (nonexistent)
+++ x11-plugins/pidgin-gfire/pidgin-gfire-0.8.3.ebuild (revision 1)
@@ -0,0 +1,29 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: j0inty $
+
+DESCRIPTION="Gfire is an open source plugin for the Pidgin IM client which allows you to connect the Xfire network."
+HOMEPAGE="http://gfireproject.org/"
+SRC_URI="http://iweb.dl.sourceforge.net/project/gfire/gfire/gfire-0.8.3/pidgin-gfire-0.8.3.tar.gz"
+
+LICENSE="GPLv3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="debug"
+
+RESTRICT="mirror"
+
+RDEPEND="net-im/pidgin"
+
+DEPEND="dev-util/pkgconfig
+ ${RDEPEND}"
+
+src_compile() {
+ econf $(use_enable debug) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog README
+}
Index: x11-plugins/pidgin-gfire/pidgin-gfire-9999.ebuild
===================================================================
--- x11-plugins/pidgin-gfire/pidgin-gfire-9999.ebuild (nonexistent)
+++ x11-plugins/pidgin-gfire/pidgin-gfire-9999.ebuild (revision 1)
@@ -0,0 +1,32 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: j0inty $
+
+inherit subversion
+
+DESCRIPTION="Gfire is an open source plugin for the Pidgin IM client which allows you to connect the Xfire network."
+HOMEPAGE="http://gfireproject.org/"
+SRC_URI=""
+
+ESVN_REPO_URI="http://my-svn.assembla.com/svn/gfire/trunk/"
+ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/svn-src/"
+
+LICENSE="GPLv3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="debug"
+
+RDEPEND="net-im/pidgin"
+
+DEPEND="dev-util/pkgconfig
+ ${RDEPEND}"
+
+src_compile(){
+ econf $(use_enable debug) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install(){
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog README
+}
Index: .project
===================================================================
--- .project (revision 238)
+++ .project (revision 1)
@@ -5,13 +5,7 @@
<projects>
</projects>
<buildSpec>
- <buildCommand>
- <name>org.eclipse.dltk.core.scriptbuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
</buildSpec>
<natures>
- <nature>net.sourceforge.shelled.core.nature</nature>
</natures>
</projectDescription>