blob: 3957d68054da6ef59931b6f5974581029d5fd857 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pymssql/pymssql-1.0.2.ebuild,v 1.1 2009/05/11 06:26:01 lordvan Exp $
NEED_PYTHON=2.4
inherit distutils
DESCRIPTION="Simple MSSQL python extension module"
HOMEPAGE="http://pymssql.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND=">=dev-db/freetds-0.63"
pkg_setup() {
if ! built_with_use dev-db/freetds mssql ; then
eerror "Re-emerge freetds with USE=mssql"
die "Re-emerge freetds with USE=mssql"
fi
}
|