summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-09-08 06:55:59 +0000
committerMike Frysinger <vapier@gentoo.org>2003-09-08 06:55:59 +0000
commit3027a3a2ba8005abe1c43fc56e261f6a765a6182 (patch)
tree07064f872287b93ab080075d9d0766eb35876382 /net-misc/tsocks
parentrepoman: header fix (diff)
downloadhistorical-3027a3a2ba8005abe1c43fc56e261f6a765a6182.tar.gz
historical-3027a3a2ba8005abe1c43fc56e261f6a765a6182.tar.bz2
historical-3027a3a2ba8005abe1c43fc56e261f6a765a6182.zip
repoman
Diffstat (limited to 'net-misc/tsocks')
-rw-r--r--net-misc/tsocks/tsocks-1.8_beta4.ebuild24
1 files changed, 12 insertions, 12 deletions
diff --git a/net-misc/tsocks/tsocks-1.8_beta4.ebuild b/net-misc/tsocks/tsocks-1.8_beta4.ebuild
index 6e4257c86c86..2dec243fc3fa 100644
--- a/net-misc/tsocks/tsocks-1.8_beta4.ebuild
+++ b/net-misc/tsocks/tsocks-1.8_beta4.ebuild
@@ -1,14 +1,14 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tsocks/tsocks-1.8_beta4.ebuild,v 1.11 2003/08/21 23:18:39 wwoods Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tsocks/tsocks-1.8_beta4.ebuild,v 1.12 2003/09/08 06:54:24 vapier Exp $
-DESCRIPTION="Transparent SOCKS v4 proxying library."
+DESCRIPTION="Transparent SOCKS v4 proxying library"
HOMEPAGE="http://tsocks.sourceforge.net/"
+SRC_URI="mirror://sourceforge/tsocks/${PN}-${PV/_}.tar.gz"
+
LICENSE="GPL-2"
-DEPEND="virtual/glibc"
-SRC_URI="http://ftp1.sourceforge.net/${PN}/${PN}-1.8beta4.tar.gz"
-KEYWORDS="x86 sparc amd64 ~alpha"
SLOT="0"
+KEYWORDS="x86 sparc amd64 ~alpha"
S=${WORKDIR}/tsocks-1.8
@@ -16,15 +16,16 @@ src_compile() {
# NOTE: the docs say to install it into /lib. If you put it into
# /usr/lib and add it to /etc/ld.so.preload on many systems /usr isn't
# mounted in time :-( (Ben Lutgens) <lamer@gentoo.org>
- try ./configure \
+ ./configure \
--host=${CHOST} \
--prefix=/usr \
--with-conf=/etc/socks/tsocks.conf \
- --mandir=/usr/share/man
- try emake
+ --mandir=/usr/share/man \
+ || die
+ emake || die
}
-src_install () {
+src_install() {
make DESTDIR=${D} install || die
dobin validateconf inspectsocks saveme
insinto /etc/socks
@@ -35,7 +36,6 @@ src_install () {
dosym /lib/libtsocks.so /usr/lib/libtsocks.so
}
-pkg_postinst () {
- einfo "Make sure you create /etc/socks/tsocks.conf from on of the
- examples in that directory"
+pkg_postinst() {
+ einfo "Make sure you create /etc/socks/tsocks.conf from on of the examples in that directory"
}