add local overlay
This commit is contained in:
commit
4883c62e9a
68 changed files with 2719 additions and 0 deletions
1
app-pda/ipheth-pair/Manifest
Normal file
1
app-pda/ipheth-pair/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
EBUILD ipheth-pair-9999.ebuild 840 SHA256 969d3df5d71a8f1b66644a5acb3090e0799597688ebd87611736cc9207e49509 SHA512 064e9e23e3553acf5b167d59265c7465f274b96228e7763471c18d729615c589243fa9c9e860616e5a8c85e1b622e00e869d2c646eb230fa7ecfce30c76ff0a1 WHIRLPOOL 2d120c3ab64878b13f11adfc472645f006dbc4c87846b3a8d0b134352494a2dd056cb0ec9c69a23783b3d6ff95269803dd863c738701f282cdd0b9808a60b8ec
|
||||
41
app-pda/ipheth-pair/ipheth-pair-9999.ebuild
Normal file
41
app-pda/ipheth-pair/ipheth-pair-9999.ebuild
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
inherit autotools eutils git-2 udev
|
||||
|
||||
DESCRIPTION="iPhone USB Ethernet Driver for Linux pairing helper"
|
||||
HOMEPAGE="http://giagio.com/wiki/moin.cgi/iPhoneEthernetDriver"
|
||||
SRC_URI=""
|
||||
EGIT_REPO_URI="git://github.com/dgiagio/ipheth.git/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="udev"
|
||||
|
||||
RDEPEND="app-pda/libimobiledevice"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_compile() {
|
||||
emake -C ipheth-pair || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
exeinto /lib/udev
|
||||
doexe ${WORKDIR}/${P}/${PN}/${PN}
|
||||
udev_dorules "${WORKDIR}/${P}/${PN}"/90-iphone-tether.rules
|
||||
if ! use udev; then
|
||||
rm "${ED}"/$(get_udevdir)/rules.d/90-iphone-tether.rules
|
||||
rmdir -p "${ED}"/$(get_udevdir)/rules.d
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use udev; then
|
||||
udev_reload
|
||||
fi
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue