summaryrefslogtreecommitdiff
blob: 7a2429ef11d17769c7508169e040013fdc9116c8 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#Copyright 2002 Gentoo Technologies, Inc.
#Distributed under the terms of the GNU General Public License, v2 or later
#Author <root@station-1.internal.feedbackplusinc.com>

S=${WORKDIR}/${P}
DESCRIPTION="Tabular Datastream Library"
SRC_URI="http://ibiblio.org/pub/Linux/ALPHA/freetds/${P}.tgz"
HOMEPAGE="http://ibiblio.org/pub/Linux/ALPHA/freetds/"
DEPEND="virtual/glibc"
RDEPEND=${DEPEND}
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"

src_unpack() {

	unpack ${P}.tgz
	cd ${S}

}

src_compile() {

	./configure \
		--prefix=/usr \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man \
		--with-tdsver=7.0 \
		|| die "./configure failed"

	emake || die

	 mv ${S}/Makefile ${S}/Makefile.orig
	 sed -e 's/^DEFDIR = /DEFDIR = $(DESTDIR)/' \
		 -e 's/^ETC = /ETC = $(DESTDIR)/' \
		 ${S}/Makefile.orig > ${S}/Makefile
}

src_install () {

	make DESTDIR=${D} install || die
}