summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2003-10-19 15:56:19 +0000
committerHeinrich Wendel <lanius@gentoo.org>2003-10-19 15:56:19 +0000
commitdeaeadc886fc6d94ecdaa61349f74b4311359b21 (patch)
tree6511ef0a0c169ebd1b0ba42802da3b2762cef516 /net-misc/sitecopy
parentcleanups (diff)
downloadgentoo-2-deaeadc886fc6d94ecdaa61349f74b4311359b21.tar.gz
gentoo-2-deaeadc886fc6d94ecdaa61349f74b4311359b21.tar.bz2
gentoo-2-deaeadc886fc6d94ecdaa61349f74b4311359b21.zip
changelog:P
Diffstat (limited to 'net-misc/sitecopy')
-rw-r--r--net-misc/sitecopy/ChangeLog7
-rw-r--r--net-misc/sitecopy/Manifest4
-rw-r--r--net-misc/sitecopy/sitecopy-0.13.4-r1.ebuild8
3 files changed, 15 insertions, 4 deletions
diff --git a/net-misc/sitecopy/ChangeLog b/net-misc/sitecopy/ChangeLog
index 2a5405a5833e..d1b35d34b498 100644
--- a/net-misc/sitecopy/ChangeLog
+++ b/net-misc/sitecopy/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/sitecopy
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/sitecopy/ChangeLog,v 1.12 2003/10/19 11:15:35 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/sitecopy/ChangeLog,v 1.13 2003/10/19 15:56:14 lanius Exp $
+
+*sitecopy-0.13.4-r1 (19 Oct 2003)
+
+ 19 Oct 2003; Heinrich Wendel <lanius@gentoo.org> sitecopy-0.13.4-r1.ebuild:
+ added nls use flag, fixed installing of sitecopy when gnome is set
19 Oct 2003; Heinrich Wendel <lanius@gentoo.org> sitecopy-0.11.4.ebuild,
sitecopy-0.13.4.ebuild:
diff --git a/net-misc/sitecopy/Manifest b/net-misc/sitecopy/Manifest
index b50b435826ad..feec6dc64a9d 100644
--- a/net-misc/sitecopy/Manifest
+++ b/net-misc/sitecopy/Manifest
@@ -1,8 +1,8 @@
MD5 94c1f291e7bccf04562cd68ab24a72bd sitecopy-0.10.12-r1.ebuild 991
MD5 15e6d0440ea28b858bcde854207909f0 sitecopy-0.12.1.ebuild 1144
MD5 0839b5699749c70d54c4588cfd007f14 sitecopy-0.13.4.ebuild 1140
-MD5 18a02582146d13bf7489adedab23836f sitecopy-0.13.4-r1.ebuild 1546
-MD5 97b83692f076b3e1cce5ff465670d016 ChangeLog 1791
+MD5 2aae25f9bd443115d59e338a2d588ddd sitecopy-0.13.4-r1.ebuild 1958
+MD5 b6f96d5303fc796895f8ebdcdc92e3af ChangeLog 1974
MD5 2181dd9a02cbcac0257406ff7a30a37b files/digest-sitecopy-0.13.4-r1 67
MD5 09b3e7444248285b787fa3635d41aedc files/digest-sitecopy-0.10.12-r1 68
MD5 3ee0433186f6f3224dff93ab6818a119 files/digest-sitecopy-0.12.1 67
diff --git a/net-misc/sitecopy/sitecopy-0.13.4-r1.ebuild b/net-misc/sitecopy/sitecopy-0.13.4-r1.ebuild
index f3ddcce1f949..f0947883d664 100644
--- a/net-misc/sitecopy/sitecopy-0.13.4-r1.ebuild
+++ b/net-misc/sitecopy/sitecopy-0.13.4-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 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-r1.ebuild,v 1.1 2003/10/19 11:15:36 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/sitecopy/sitecopy-0.13.4-r1.ebuild,v 1.2 2003/10/19 15:56:14 lanius Exp $
IUSE="ssl xml xml2 gnome"
@@ -37,6 +37,9 @@ src_compile() {
use ssl \
&& myconf="${myconf} --with-ssl" \
|| myconf="${myconf} --without-ssl"
+ use nls \
+ && myconf="${myconf} --enable-nls" \
+ || myconf="${myconf} --disable-nls"
use gnome \
&& myconf="${myconf} --with-gnomefe"
@@ -47,6 +50,9 @@ src_compile() {
sed -i -e "s:VERSION:PACKAGE_VERSION:" gnome/main.c
echo "int fe_accept_cert(const ne_ssl_certificate *cert, int failures) { return 0; }" >> gnome/gcommon.c
sed -i -e "s:-lglib:-lglib -lgthread:" Makefile
+ sed -i -e "s:TARGET = xsitecopy:TARGET = xsitecopy sitecopy:" Makefile
+ sed -i -e 's:$(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)/$(TARGET):$(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)/:' Makefile
+ sed -i -e 's:install\: $(TARGET) install-xsitecopy:install\: $(TARGET) install-xsitecopy install-sitecopy:' Makefile
emake || die "emake failed"
}