diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-11 09:47:03 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-11 09:47:03 +0000 |
commit | 5efa39a5dc2490ae655bff57945a83f74a71b9e0 (patch) | |
tree | dbc042d138d475619883c76d371bc783588f34ac /sys-apps/ucspi-proxy | |
parent | Initial commit, thanks to Kalin Kozhuharov <kalin@thinrope.net>, bug #23836 (diff) | |
download | gentoo-2-5efa39a5dc2490ae655bff57945a83f74a71b9e0.tar.gz gentoo-2-5efa39a5dc2490ae655bff57945a83f74a71b9e0.tar.bz2 gentoo-2-5efa39a5dc2490ae655bff57945a83f74a71b9e0.zip |
Initial commit, thanks to Kalin Kozhuharov <kalin@thinrope.net>, bug #23836
Diffstat (limited to 'sys-apps/ucspi-proxy')
-rw-r--r-- | sys-apps/ucspi-proxy/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/ucspi-proxy/Manifest | 3 | ||||
-rw-r--r-- | sys-apps/ucspi-proxy/files/digest-ucspi-proxy-0.95 | 1 | ||||
-rw-r--r-- | sys-apps/ucspi-proxy/ucspi-proxy-0.95.ebuild | 24 |
4 files changed, 36 insertions, 1 deletions
diff --git a/sys-apps/ucspi-proxy/ChangeLog b/sys-apps/ucspi-proxy/ChangeLog new file mode 100644 index 000000000000..dc5eb7ac3559 --- /dev/null +++ b/sys-apps/ucspi-proxy/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-apps/ucspi-proxy +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ucspi-proxy/ChangeLog,v 1.1 2003/08/11 09:46:58 robbat2 Exp $ + +*ucspi-proxy-0.95 (11 Aug 2003) + + 11 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> ucspi-proxy-0.95.ebuild: + Initial commit, thanks to Kalin Kozhuharov <kalin@thinrope.net>, bug #23836 + diff --git a/sys-apps/ucspi-proxy/Manifest b/sys-apps/ucspi-proxy/Manifest index 0f4be8d4cf95..b594bcda60a6 100644 --- a/sys-apps/ucspi-proxy/Manifest +++ b/sys-apps/ucspi-proxy/Manifest @@ -1,2 +1,3 @@ -MD5 ab69dd6846d988c64fadee535c521ad4 ucspi-proxy-0.95.ebuild 648 +MD5 ff16ba46b533d550304f27fa0a12c17d ucspi-proxy-0.95.ebuild 738 +MD5 e79ab0ace2c34000436b95042d2474cc ChangeLog 412 MD5 949a21e84e0d5aa0adeccc0df2cf174a files/digest-ucspi-proxy-0.95 67 diff --git a/sys-apps/ucspi-proxy/files/digest-ucspi-proxy-0.95 b/sys-apps/ucspi-proxy/files/digest-ucspi-proxy-0.95 new file mode 100644 index 000000000000..f451b2a81ac4 --- /dev/null +++ b/sys-apps/ucspi-proxy/files/digest-ucspi-proxy-0.95 @@ -0,0 +1 @@ +MD5 83bdf510eb6559e38ea0976669253331 ucspi-proxy-0.95.tar.gz 17703 diff --git a/sys-apps/ucspi-proxy/ucspi-proxy-0.95.ebuild b/sys-apps/ucspi-proxy/ucspi-proxy-0.95.ebuild new file mode 100644 index 000000000000..e24e27ead307 --- /dev/null +++ b/sys-apps/ucspi-proxy/ucspi-proxy-0.95.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ucspi-proxy/ucspi-proxy-0.95.ebuild,v 1.1 2003/08/11 09:46:58 robbat2 Exp $ + +DESCRIPTION="A proxy program that passes data back and forth between two connections set up by a UCSPI server and a UCSPI client." +HOMEPAGE="http://untroubled.org/ucspi-proxy/" +SRC_URI="http://untroubled.org/ucspi-proxy/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="sys-devel/gcc-config" +RDEPEND="virtual/glibc" + +S=${WORKDIR}/${P} + +src_compile() { + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die +} + +src_install() { + einstall || die + dodoc ANNOUNCEMENT NEWS README TODO +} |