blob: 06d4de776311b4f4c3e36356581af88b302c9791 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pymssql/pymssql-0.7.4.ebuild,v 1.4 2007/06/24 22:35:18 angelos Exp $
NEED_PYTHON=2.4
inherit distutils
DESCRIPTION="Simple MSSQL python extension module"
HOMEPAGE="http://pymssql.sourceforge.net/"
SRC_URI="mirror://sourceforge/pymssql/${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
}
|