blob: d398d91ec974ad0d94c056714ef60f252267f768 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mysql-ruby/mysql-ruby-2.4.4a.ebuild,v 1.1 2003/04/08 09:53:38 twp Exp $
DESCRIPTION="A Ruby extention library to use MySQL"
HOMEPAGE="http://www.tmtm.org/en/mysql/ruby/"
SRC_URI="http://www.tmtm.org/en/mysql/ruby/${P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~alpha ~arm ~hppa ~mips ~ppc ~sparc ~x86"
DEPEND=">=dev-lang/ruby-1.6.8
>=dev-db/mysql-3.23.54"
src_compile() {
ruby extconf.rb || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|