blob: 4edee33c3798cd73aefe9206a14fa0b38e23249f (
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 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/dctc-0.85.9.ebuild,v 1.20 2012/05/04 06:33:35 jdhore Exp $
inherit autotools eutils
DESCRIPTION="Direct Connect Text Client, almost famous file share program"
HOMEPAGE="http://brainz.servebeer.com/dctc/"
SRC_URI="http://brainz.servebeer.com/dctc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64 ~sparc"
IUSE=""
RDEPEND="=dev-libs/glib-2*
>=sys-libs/db-3
dev-libs/libxml2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/dctc-0.85.6-passive.patch
epatch "${FILESDIR}"/dctc-0.85.9-gcc41.patch
epatch "${FILESDIR}"/dctc-0.85.9-skip_db_ver_check.patch
eautoreconf
# This fix fails with db-4.3
if has_version "=sys-libs/db-4.2*" && ! has_version ">=sys-libs/db-4.3"; then
local dbfunc="`grep '^#define.*db_env_create' /usr/include/db.h | awk '{print $NF}'`"
if [ "${dbfunc}" != "db_env_create" ] ; then
sed -i "s:db_env_create:${dbfunc}:g" configure
fi
fi
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc Documentation/Documentation/* Documentation/Documentation/DCextensions/*
dodoc AUTHORS ChangeLog KNOWN_BUGS NEWS README TODO
}
|