Subversion Repositories KardasA Overlay

Compare Revisions

Ignore whitespace Rev 107 → Rev 108

/app-misc/concordance/Manifest
0,0 → 1,2
DIST concordance-0.23.tar.bz2 991468 RMD160 96be0b3630a1d0fec906e576039a09db66ff682b SHA1 7cd2b3dbc0b5f9237290bae46671153327ee3b62 SHA256 47aaaad4e7f7e11ca0bbf9817c459ef7a7979cc9ecd73ac7eddcffb0063efc9f
EBUILD concordance-0.23.ebuild 1168 RMD160 2ba67cc57c1e4c24288da0b3f860f36691e2d788 SHA1 15d1345afb0ed042053330775532eb19215f988e SHA256 55688b13b9b761e45e48a9f2a8da53953f8ee439dd26ac8ab21c54ebff13c36c
/app-misc/concordance/concordance-0.23.ebuild
0,0 → 1,42
# Copyright 1999-2008 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"
}
/app-misc/congruity/Manifest
0,0 → 1,2
DIST congruity-15.tar.bz2 156839 RMD160 2331742370b8a577791047d015eb6f34b349df27 SHA1 a323752dff9a02eab0da90a1e5db20a4e3d0c353 SHA256 87db67d9c6f2d578104936bb17e2d330aee96ec3a94a5c20972bfa4cb463a74f
EBUILD congruity-15.ebuild 525 RMD160 d34fa22f86ea4af1f8cbcdd71ef9b6d472096854 SHA1 38f5dbe07d3bbaf14f52d34f1d77d8bbb9e81e58 SHA256 58d9bcceb4c7f4db4f872ca011c052c6e6bc2796bcbb86b815eca317dff5f4e0
/app-misc/congruity/congruity-15.ebuild
0,0 → 1,24
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
 
DESCRIPTION=""
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"
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"
}
 
/dev-libs/libconcord/files/libconcord-0.23-flash.patch
0,0 → 1,11
--- 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
/dev-libs/libconcord/Manifest
0,0 → 1,3
AUX libconcord-0.23-flash.patch 411 RMD160 bf13e38dc2796e542e8c98bd1fab0188685bf232 SHA1 7e00b57736cbf2bf7eac26a6689d8176c0f5ce31 SHA256 b754963c20c38e4007333ed858d48805fc642eeb48d87f089a8b5c4fa2c76e12
DIST concordance-0.23.tar.bz2 991468 RMD160 96be0b3630a1d0fec906e576039a09db66ff682b SHA1 7cd2b3dbc0b5f9237290bae46671153327ee3b62 SHA256 47aaaad4e7f7e11ca0bbf9817c459ef7a7979cc9ecd73ac7eddcffb0063efc9f
EBUILD libconcord-0.23.ebuild 903 RMD160 ef93a62709d0cb648083c0e1d8f8419ab5d65ff6 SHA1 29a28bd68521bad9b24fa2ce81d182f87b108de1 SHA256 c3aaa51ed54871e5b88739870aad67abaee88a1bddd7109c2853316ea4544cb8
/dev-libs/libconcord/libconcord-0.23.ebuild
0,0 → 1,44
# 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}
}
 
 
/profiles/cotegories
1,6 → 1,7
app-emulation
app-misc
dev-perl
dev-libs
dev-python
games-rpg
media-gfx