diff options
author | Lisa M. Seelye <lisa@gentoo.org> | 2003-12-22 04:03:52 +0000 |
---|---|---|
committer | Lisa M. Seelye <lisa@gentoo.org> | 2003-12-22 04:03:52 +0000 |
commit | 384e145df3a3f2354e695dab83226cec1dbf4762 (patch) | |
tree | dcb7b0fed6b2e25d6fe01606e49e7f5dccd2aa94 /app-misc | |
parent | Live fix (source patch) since uptimes.wonko.com was changed to uptimes.hostin... (diff) | |
download | gentoo-2-384e145df3a3f2354e695dab83226cec1dbf4762.tar.gz gentoo-2-384e145df3a3f2354e695dab83226cec1dbf4762.tar.bz2 gentoo-2-384e145df3a3f2354e695dab83226cec1dbf4762.zip |
Live fix (source patch) since uptimes.wonko.com was changed to uptimes.hostingwired.com.
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/linup/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/linup/Manifest | 4 | ||||
-rw-r--r-- | app-misc/linup/files/digest-linup-1.1.1-r1 | 1 | ||||
-rw-r--r-- | app-misc/linup/files/fix-uptimes-host.gz | bin | 0 -> 303 bytes | |||
-rw-r--r-- | app-misc/linup/linup-1.1.1-r1.ebuild | 35 |
5 files changed, 47 insertions, 3 deletions
diff --git a/app-misc/linup/ChangeLog b/app-misc/linup/ChangeLog index 5cd8573bd9e4..9cf4fa71af17 100644 --- a/app-misc/linup/ChangeLog +++ b/app-misc/linup/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-misc/linup # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/linup/ChangeLog,v 1.4 2003/10/24 18:05:18 lisa Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/linup/ChangeLog,v 1.5 2003/12/22 04:03:44 lisa Exp $ + +*linup-1.1.1-r1 (21 Dec 2003) + + 21 Dec 2003; Lisa Seelye <lisa@gentoo.org> linup-1.1.1-r1.ebuild, + files/fix-uptimes-host.gz: + This is a LIVE fix for the fact that uptimes.wonko.com has stopped hosting. + The host has now changed to uptimes.hostingwired.com. The patch is to patch + linup.h to change a #DEFINE HOST 24 Oct 2003; Lisa Seelye <lisa@gentoo.org> linup-1.1.1.ebuild: This has been ~x86 for so long, I think its safe to put in x86. diff --git a/app-misc/linup/Manifest b/app-misc/linup/Manifest index 8a0403a62e2c..b13f4e6a046e 100644 --- a/app-misc/linup/Manifest +++ b/app-misc/linup/Manifest @@ -1,5 +1,5 @@ -MD5 b9b647135cb1b0808d043226097ef7a5 linup-1.1.1-r1.ebuild 747 -MD5 3c4d5f4f086633c05d7ec64ea448efc8 ChangeLog 628 +MD5 733dace78d99084a59f5a1777a3c5c55 linup-1.1.1-r1.ebuild 750 +MD5 a647c3416e70e517c599a4064a33e104 ChangeLog 948 MD5 375ccf8c960cdb71b5ff477faa4a6cc5 linup-1.1.1.ebuild 667 MD5 edb03e1f886db92dc51695d05cbced61 files/digest-linup-1.1.1-r1 62 MD5 edb03e1f886db92dc51695d05cbced61 files/digest-linup-1.1.1 62 diff --git a/app-misc/linup/files/digest-linup-1.1.1-r1 b/app-misc/linup/files/digest-linup-1.1.1-r1 new file mode 100644 index 000000000000..4f9ffa53a741 --- /dev/null +++ b/app-misc/linup/files/digest-linup-1.1.1-r1 @@ -0,0 +1 @@ +MD5 3df8c04a1bb59190bc706e02dd4d44ff linup-1.1.1.tar.gz 14422 diff --git a/app-misc/linup/files/fix-uptimes-host.gz b/app-misc/linup/files/fix-uptimes-host.gz Binary files differnew file mode 100644 index 000000000000..3db725904996 --- /dev/null +++ b/app-misc/linup/files/fix-uptimes-host.gz diff --git a/app-misc/linup/linup-1.1.1-r1.ebuild b/app-misc/linup/linup-1.1.1-r1.ebuild new file mode 100644 index 000000000000..ac069f456df5 --- /dev/null +++ b/app-misc/linup/linup-1.1.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/linup/linup-1.1.1-r1.ebuild,v 1.1 2003/12/22 04:03:44 lisa Exp $ + +DESCRIPTION="Linux Uptime Client" +HOMEPAGE="ftp://ftp.smux.net/people/sena/linup/" +SRC_URI="ftp://ftp.smux.net/people/sena/linup/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +RDEPEND="virtual/glibc" + +S="${WORKDIR}/${PN}" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/fix-uptimes-host.gz +} + +src_compile() { + emake || die "compile problem" +} + +src_install () { + dobin linup + dodoc COPYING README +} + +pkg_postinst() { + einfo "Please read /usr/share/doc/${P}/README.gz" + einfo "on how to run linup." +} |