diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-09-27 15:18:54 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-09-27 15:18:54 +0000 |
commit | 46659cd9f05fa7014917dcbc79176f2c68d17391 (patch) | |
tree | df58920e4827f404c7f434d974a55488c22f8daf | |
parent | 3757d36b958bccdf5563c5b0756604527499e354 (diff) |
fix section on a couple of console/network utilities
BKrev: 41582f5eJjXqF4GXvXTwBBUvTIsuWg
-rw-r--r-- | lftp/lftp_3.0.1.oe | 4 | ||||
-rw-r--r-- | slrn/slrn_0.9.8.0.oe | 3 | ||||
-rw-r--r-- | tin/tin_1.7.3.oe | 4 | ||||
-rw-r--r-- | wget/wget_1.9.1.oe | 19 |
4 files changed, 26 insertions, 4 deletions
diff --git a/lftp/lftp_3.0.1.oe b/lftp/lftp_3.0.1.oe index a683b46760..a054bbdedb 100644 --- a/lftp/lftp_3.0.1.oe +++ b/lftp/lftp_3.0.1.oe @@ -2,9 +2,9 @@ DESCRIPTION = "lftp is a sophisticated command line based file \ transfer program. Supported protocols include FTP, HTTP, \ and FISH." HOMEPAGE = "http://lftp.yar.ru" -SECTION = "net" -PRIORITY = "optional" +SECTION = "console/network" DEPENDS = "readline" +PR = "r1" SRC_URI = "http://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/lftp-${PV}.tar.bz2 \ file://pty.patch;patch=1" diff --git a/slrn/slrn_0.9.8.0.oe b/slrn/slrn_0.9.8.0.oe index ab03f8bec2..5dca0bbf90 100644 --- a/slrn/slrn_0.9.8.0.oe +++ b/slrn/slrn_0.9.8.0.oe @@ -1,8 +1,9 @@ DESCRIPTION = "slrn - console news reader" -SECTION = "base" +SECTION = "console/network" PRIORITY = "optional" MAINTAINER = "Graeme Gregory <xora@lordpain.uklinux.net>" DEPENDS = "slang" +PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/slrn/slrn-${PV}.tar.bz2 \ file://m4.patch;patch=1 \ diff --git a/tin/tin_1.7.3.oe b/tin/tin_1.7.3.oe index 90fbb6c2d5..44932d75f7 100644 --- a/tin/tin_1.7.3.oe +++ b/tin/tin_1.7.3.oe @@ -1,5 +1,7 @@ -DEPENDS = "ncurses" DESCRIPTION = "Tin is a powerful text mode news reader." +SECTION = "console/network" +DEPENDS = "ncurses" +PR = "r1" SRC_URI = "ftp://ftp.tin.org/pub/news/clients/tin/unstable/tin-${PV}.tar.gz \ file://makecfg-buildcc.patch;patch=1 \ diff --git a/wget/wget_1.9.1.oe b/wget/wget_1.9.1.oe index e69de29bb2..bc9dc35c8f 100644 --- a/wget/wget_1.9.1.oe +++ b/wget/wget_1.9.1.oe @@ -0,0 +1,19 @@ +DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more." +SECTION = "console/network" +MAINTAINER = "Chris Larson <kergoth@handhelds.org>" +PR = "r1" + +SRC_URI = "${GNU_MIRROR}/wget/wget-${PV}.tar.gz \ + file://m4macros.patch;patch=1 \ + file://autotools.patch;patch=1" +S = "${WORKDIR}/wget-${PV}" + +inherit autotools + +do_configure () { + if [ ! -e acinclude.m4 ]; then + mv aclocal.m4 acinclude.m4 + fi + rm -f libtool.m4 + autotools_do_configure +} |