blob: 45305424ed896efbba4a78caac1373d98dbad595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="A binary package for p2c"
HOMEPAGE="http://www.synaptics.com/people/daveg/"
SRC_URI="ftp://rpmfind.net/linux/redhat/6.2/en/os/i386/RedHat/RPMS/${P}-4.i386.rpm"
LICENSE=""
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RESTRICT="nomirror"
DEPEND=""
S=${WORKDIR}
src_unpack() {
rpm2targz ${DISTDIR}/${A}
}
src_compile() {
echo ""
}
src_install() {
cd ${D}
tar xfz ${S}/${P}-4.i386.tar.gz
}
|