diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-08-31 17:29:15 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-08-31 17:29:15 +0000 |
commit | cea459f24c68128a4e88b9b249d9d5a4f654bae5 (patch) | |
tree | a3f5d405e47d80635dd844c718c015e5d4bbf71e /net-misc/sitecopy | |
parent | Version bumped. (diff) | |
download | historical-cea459f24c68128a4e88b9b249d9d5a4f654bae5.tar.gz historical-cea459f24c68128a4e88b9b249d9d5a4f654bae5.tar.bz2 historical-cea459f24c68128a4e88b9b249d9d5a4f654bae5.zip |
Version bumped.
Diffstat (limited to 'net-misc/sitecopy')
-rw-r--r-- | net-misc/sitecopy/Manifest | 4 | ||||
-rw-r--r-- | net-misc/sitecopy/files/digest-sitecopy-0.13.4 | 1 | ||||
-rw-r--r-- | net-misc/sitecopy/sitecopy-0.13.4.ebuild | 42 |
3 files changed, 45 insertions, 2 deletions
diff --git a/net-misc/sitecopy/Manifest b/net-misc/sitecopy/Manifest index 11775c2868b8..106db8cd169d 100644 --- a/net-misc/sitecopy/Manifest +++ b/net-misc/sitecopy/Manifest @@ -1,8 +1,8 @@ -MD5 55d752d08257016958c5a67b89b8d5fd ChangeLog 1523 +MD5 ec9ce67e51b558a15d8d95c2dfa47d74 ChangeLog 1648 MD5 187f73bae3eeae7871f2bb88fa2b53ab sitecopy-0.10.12-r1.ebuild 996 MD5 82b5e90e91de7b6c82d931f080f2948f sitecopy-0.11.4.ebuild 828 MD5 1110851d1cab30c79224737e38d0e7ab sitecopy-0.12.1.ebuild 1141 -MD5 afb9d9634bf4fb0d0c9447958a121492 sitecopy-0.13.4.ebuild 1142 +MD5 88e230a86f455ec3a40664c02f347cff sitecopy-0.13.4.ebuild 1145 MD5 09b3e7444248285b787fa3635d41aedc files/digest-sitecopy-0.10.12-r1 68 MD5 33ca043ac941860223413b8d1ddc5d1f files/digest-sitecopy-0.11.4 67 MD5 3ee0433186f6f3224dff93ab6818a119 files/digest-sitecopy-0.12.1 67 diff --git a/net-misc/sitecopy/files/digest-sitecopy-0.13.4 b/net-misc/sitecopy/files/digest-sitecopy-0.13.4 new file mode 100644 index 000000000000..84b375f09a4f --- /dev/null +++ b/net-misc/sitecopy/files/digest-sitecopy-0.13.4 @@ -0,0 +1 @@ +MD5 f3fb9c1d9098132f3135d2d5d92e68bf sitecopy-0.13.4.tar.gz 773653 diff --git a/net-misc/sitecopy/sitecopy-0.13.4.ebuild b/net-misc/sitecopy/sitecopy-0.13.4.ebuild new file mode 100644 index 000000000000..49fb7e44f026 --- /dev/null +++ b/net-misc/sitecopy/sitecopy-0.13.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# 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.1 2003/08/31 17:29:08 mholzer 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} + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die "install failed" +} |