blob: 721fcc668df0512c5d9a16c43263baa9c59144f5 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sitecopy/sitecopy-0.13.4.ebuild,v 1.7 2004/06/25 00:11:24 agriffis Exp $
IUSE="ssl xml xml2"
S=${WORKDIR}/${P}
DESCRIPTION="sitecopy is for easily maintaining remote web sites"
SRC_URI="http://www.lyra.org/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.lyra.org/sitecopy/"
KEYWORDS="x86 ppc sparc"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/glibc
>=sys-libs/zlib-1.1.3
xml? ( dev-libs/libxml )
dev-libs/libxml2
ssl? ( >=dev-libs/openssl-0.9.6 )"
src_compile() {
local myconf=""
if use xml && use xml2 ; then
myconf="${myconf} --with-libxml2 --without-libxml1"
else
use xml \
&& myconf="${myconf} --with-libxml1" \
|| myconf="${myconf} --without-libxml1"
use xml2 \
&& myconf="${myconf} --with-libxml2" \
|| myconf="${myconf} --without-libxml2"
fi
use ssl \
&& myconf="${myconf} --with-ssl" \
|| myconf="${myconf} --without-ssl"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
}
|