summaryrefslogtreecommitdiff
blob: ae62bac580be1914b88985c7a45abadaa11bd54b (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
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: tools@cvs.gentoo.org
# $Header: /var/cvsroot/gentoo-x86/dev-python/sip/sip-2.4.ebuild,v 1.2 2001/08/11 20:35:57 chadh Exp $

A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="SIP is a tool for generating bindings for C++ classes so that they can be used by Python."
SRC_URI="http://www.river-bank.demon.co.uk/software/"${A}
HOMEPAGE="http://www.thekompany.com/projects/pykde/"

DEPEND="virtual/python"

src_compile(){
    try ./configure --prefix=/usr
    try emake
}

src_install() {
    try emake DESTDIR=${D} install
    dodoc AUTHORS
    dodoc COPYING
    dodoc NEWS
    dodoc README
    dodoc THANKS
    dodoc TODO
}