blob: 69f892a43ad553b872f8e345816941cc5a9320a3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/phpdbg/phpdbg-2.10.ebuild,v 1.6 2003/02/13 11:31:44 vapier Exp $
PL="pl3"
S=${WORKDIR}/dbg-${PV}${PL}
DESCRIPTION="Ruby/DBI - a database independent interface for accessing databases - similar to Perl's DBI"
SRC_URI="http://dd.cron.ru/dbg/dnld/dbg-${PV}${PL}.tar.gz"
HOMEPAGE="http://dd.cron.ru/dbg/"
SLOT="0"
LICENSE="dbgphp"
DEPEND="virtual/php"
# support ppc? or others?
KEYWORDS="x86 sparc "
src_compile() {
phpize
./configure --with-extensions-flag
make
}
src_install () {
echo test
}
|