diff options
25 files changed, 108 insertions, 168 deletions
diff --git a/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild b/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild index 0af207b680e3..3415ef3de00f 100644 --- a/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild +++ b/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild,v 1.10 2002/10/05 05:39:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r3.ebuild,v 1.11 2002/10/19 01:52:44 vapier Exp $ IUSE="nls" @@ -13,41 +13,31 @@ SLOT="0" LICENSE="GPL-2" DEPEND="virtual/glibc - nls? ( sys-devel/gettext )" + nls? ( sys-devel/gettext )" RDEPEND="virtual/glibc" src_unpack() { - unpack ${A} cd ${S} patch -p1 < ${FILESDIR}/${P}.patch - patch -p0 < ${FILESDIR}/${P}-po-Makefile.in.in-gentoo.diff - + patch -p0 < ${FILESDIR}/${P}-po-Makefile.in.in-gentoo.diff } src_compile() { - local myconf - if [ "$DEBUG" ] - then - myconf="--enable-debugging" - fi - if [ -z "`use nls`" ] - then - myconf="${myconf} --disable-nls" - fi + [ "$DEBUG" ] && myconf="--enable-debugging" + [ -z "`use nls`" ] && myconf="${myconf} --disable-nls" - try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} ${myconf} - try make $MAKEOPTS all + econf --host=${CHOST} ${myconf} || die "econf died" + make ${MAKEOPTS} all || die "make died" } src_install() { + # DESTDIR does not work correct + make DESTDIR=${D} install || die "make install died" - # DESTDIR does not work correct - try make DESTDIR=${D} install - dodoc BUGS COPYING* CREDITS ChangeLog NEWS README RELEASE TODO docinto txt dodoc doc/*.txt doc/README.* @@ -60,8 +50,4 @@ src_install() { docinto txt/file-formats dodoc doc/file-formats/* doman doc/man/*.[1-8] - } - - - diff --git a/sys-apps/console-tools/console-tools-0.2.3-r4.ebuild b/sys-apps/console-tools/console-tools-0.2.3-r4.ebuild index f74374087188..7b9eecf99528 100644 --- a/sys-apps/console-tools/console-tools-0.2.3-r4.ebuild +++ b/sys-apps/console-tools/console-tools-0.2.3-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r4.ebuild,v 1.10 2002/10/05 05:39:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r4.ebuild,v 1.11 2002/10/19 01:52:44 vapier Exp $ IUSE="nls bootcd" @@ -13,12 +13,11 @@ SLOT="0" LICENSE="GPL-2" DEPEND="virtual/glibc - sys-devel/autoconf sys-devel/automake sys-devel/libtool - nls? ( sys-devel/gettext )" + sys-devel/autoconf sys-devel/automake sys-devel/libtool + nls? ( sys-devel/gettext )" RDEPEND="virtual/glibc" src_unpack() { - unpack ${A} cd ${S} patch -p1 < ${FILESDIR}/${P}.patch || die @@ -31,16 +30,9 @@ src_unpack() { } src_compile() { - local myconf="" - if [ "$DEBUG" ] - then - myconf="--enable-debugging" - fi - if [ -z "`use nls`" ] - then - myconf="${myconf} --disable-nls" - fi + [ "$DEBUG" ] && myconf="--enable-debugging" + [ -z "`use nls`" ] && myconf="${myconf} --disable-nls" ./configure --prefix=/usr \ --mandir=/usr/share/man \ @@ -50,7 +42,6 @@ src_compile() { } src_install() { - # DESTDIR does not work correct make DESTDIR=${D} install || die diff --git a/sys-apps/daemontools/daemontools-0.76-r1.ebuild b/sys-apps/daemontools/daemontools-0.76-r1.ebuild index 39460bb88854..ddbe3f5f5026 100644 --- a/sys-apps/daemontools/daemontools-0.76-r1.ebuild +++ b/sys-apps/daemontools/daemontools-0.76-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/daemontools/daemontools-0.76-r1.ebuild,v 1.8 2002/10/04 06:23:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/daemontools/daemontools-0.76-r1.ebuild,v 1.9 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/admin/${P} @@ -10,13 +10,12 @@ HOMEPAGE="http://cr.yp.to/daemontools.html" KEYWORDS="x86 ppc sparc sparc64" SLOT="0" -LICENSE="Freeware" +LICENSE="freedist" DEPEND="virtual/glibc" RDEPEND="${DEPEND}" src_unpack() { - unpack ${A} cd ${S} @@ -26,18 +25,14 @@ src_unpack() { echo "gcc ${CFLAGS}" > src/conf-cc echo "gcc ${LDFLAGS}" > src/conf-ld echo ${S} > src/home - } src_compile() { - cd ${S}/src emake || die "make failed" - } src_install() { - einfo "Creating service directory ..." dodir /service touch ${D}/service/.keep @@ -56,6 +51,4 @@ src_install() { insinto /etc/init.d insopts -m755 doins ${FILESDIR}/svscan - } - diff --git a/sys-apps/discover-data/discover-data-1.2002.05.23-r1.ebuild b/sys-apps/discover-data/discover-data-1.2002.05.23-r1.ebuild index 2dcaab6b1f76..03c0b23d5857 100644 --- a/sys-apps/discover-data/discover-data-1.2002.05.23-r1.ebuild +++ b/sys-apps/discover-data/discover-data-1.2002.05.23-r1.ebuild @@ -1,24 +1,25 @@ # (C) 2002 The TelemetryBox Corporation. http://telemetrybox.biz +# Distributed under the terms of the GNU General Public License v2 # Christoph Lameter, <christoph@lameter.com>, July 15, 2002 -# Released under the GPL -# +# $Header: /var/cvsroot/gentoo-x86/sys-apps/discover-data/discover-data-1.2002.05.23-r1.ebuild,v 1.4 2002/10/19 01:52:44 vapier Exp $ + DESCRIPTION="data for discover. list of pci ids. pnp ids etc." SRC_URI="ftp://ftp.debian.org/debian/pool/main/d/discover-data/${PN}_${PV}-1.tar.gz" HOMEPAGE="http://hackers.progeny.com/discover/" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -DEPEND="" +DEPEND="sys-apps/tar sys-apps/gzip" RDEPEND="" S=${WORKDIR}/discover-data-${P}-1 src_compile() { - patch -p0 <${FILESDIR}/kernel-2.2-2.4.drivername.patch - emake || die + patch -p0 <${FILESDIR}/kernel-2.2-2.4.drivername.patch + emake || die } -src_install () { - make DESTDIR=${D} install || die - dodoc ChangeLog +src_install() { + make DESTDIR=${D} install || die + dodoc ChangeLog } diff --git a/sys-apps/discover-data/discover-data-1.2002.05.23.ebuild b/sys-apps/discover-data/discover-data-1.2002.05.23.ebuild index de9fdf420f7a..8a635fd51995 100644 --- a/sys-apps/discover-data/discover-data-1.2002.05.23.ebuild +++ b/sys-apps/discover-data/discover-data-1.2002.05.23.ebuild @@ -1,27 +1,22 @@ -# # (C) 2002 The TelemetryBox Corporation. http://telemetrybox.biz +# Distributed under the terms of the GNU General Public License v2 # Christoph Lameter, <christoph@lameter.com>, July 15, 2002 -# -# Released under the GPL -# -DESCRIPTION="data for discover. list of pci ids. pnp ids etc." +# $Header: /var/cvsroot/gentoo-x86/sys-apps/discover-data/discover-data-1.2002.05.23.ebuild,v 1.4 2002/10/19 01:52:44 vapier Exp $ +DESCRIPTION="data for discover. list of pci ids. pnp ids etc." SRC_URI="ftp://ftp.debian.org/debian/pool/main/d/discover-data/discover-data_1.2002.05.23-1.tar.gz" HOMEPAGE="http://hackers.progeny.com/discover/" - -LICENSE="GPL" +LICENSE="GPL-2" SLOT="1" KEYWORDS="x86 ppc sparc sparc64" -DEPEND="bash" - -# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: -RDEPEND="" +DEPEND="sys-apps/tar sys-apps/gzip" +RDEPEND="sys-apps/bash" S=${WORKDIR}/discover-data-${P}-1 src_compile() { - emake || die + emake || die } src_install () { diff --git a/sys-apps/discover/discover-1.5-r1.ebuild b/sys-apps/discover/discover-1.5-r1.ebuild index 01d7c71ab316..aed12e700b34 100644 --- a/sys-apps/discover/discover-1.5-r1.ebuild +++ b/sys-apps/discover/discover-1.5-r1.ebuild @@ -1,28 +1,29 @@ # (C) 2002 The TelemetryBox Corporation. http://telemetrybox.biz +# Distributed under the terms of the GNU General Public License v2 # Christoph Lameter, <christoph@lameter.com>, July 15, 2002 -# Released under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/discover/discover-1.5-r1.ebuild,v 1.4 2002/09/21 03:07:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/discover/discover-1.5-r1.ebuild,v 1.5 2002/10/19 01:52:44 vapier Exp $ + DESCRIPTION="Discover hardware and load the appropriate drivers for that hardware." HOMEPAGE="http://hackers.progeny.com/discover/" SRC_URI="ftp://ftp.debian.org/debian/pool/main/d/discover/${PN}_${PV}-1.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -DEPEND="" +DEPEND="sys-apps/tar sys-apps/gzip" RDEPEND="sys-apps/discover-data" S=${WORKDIR}/${P} src_compile() { - econf --sbindir=/sbin || die "configure failed" - emake || die + econf --sbindir=/sbin || die "configure failed" + emake || die } -src_install () { +src_install() { make DESTDIR=${D} install || die - cp ${FILESDIR}/etc-init.d-discover ${D}/etc/init.d/discover - insinto /usr/share/discover - doins discover/linuxrc + cp ${FILESDIR}/etc-init.d-discover ${D}/etc/init.d/discover + insinto /usr/share/discover + doins discover/linuxrc dodoc BUGS AUTHORS ChangeLog NEWS README TODO ChangeLog.mandrake docs/ISA-Structure docs/PCI-Structure docs/Programming dodir /var/lib/discover prepallman diff --git a/sys-apps/dmapi/dmapi-2.0.5.ebuild b/sys-apps/dmapi/dmapi-2.0.5.ebuild index 41c15a0dd163..4a1b04f3d390 100644 --- a/sys-apps/dmapi/dmapi-2.0.5.ebuild +++ b/sys-apps/dmapi/dmapi-2.0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/dmapi-2.0.5.ebuild,v 1.5 2002/10/13 08:42:10 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dmapi/dmapi-2.0.5.ebuild,v 1.6 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} @@ -40,5 +40,5 @@ src_install() { dosym /lib/libdm.a /usr/lib/libdm.a dosym /lib/libdm.la /usr/lib/libdm.la - dosym /usr/lib/libdm.so /lib/libdm.so + dosym /usr/lib/libdm.so /lib/libdm.so } diff --git a/sys-apps/dnotify/dnotify-0.5.0.ebuild b/sys-apps/dnotify/dnotify-0.5.0.ebuild index 55297d051483..bc8d07cc4b32 100644 --- a/sys-apps/dnotify/dnotify-0.5.0.ebuild +++ b/sys-apps/dnotify/dnotify-0.5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.5.0.ebuild,v 1.6 2002/10/04 06:24:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.5.0.ebuild,v 1.7 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Execute a command when the contents of a directory change" @@ -10,23 +10,17 @@ KEYWORDS="x86 ppc sparc sparc64" SLOT="0" LICENSE="GPL-2" -src_unpack() { - - unpack ${A} - cd ${S} -} - src_compile() { - ./configure --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --sysconfdir=/etc \ - make || die + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sysconfdir=/etc + make || die } src_install() { - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - install || die - dodoc AUTHORS ChangeLog COPYING* NEWS README + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + install || die + dodoc AUTHORS ChangeLog COPYING* NEWS README } diff --git a/sys-apps/e2fsprogs/e2fsprogs-1.27-r1.ebuild b/sys-apps/e2fsprogs/e2fsprogs-1.27-r1.ebuild index b5d164a2f9c1..973e07ee39db 100644 --- a/sys-apps/e2fsprogs/e2fsprogs-1.27-r1.ebuild +++ b/sys-apps/e2fsprogs/e2fsprogs-1.27-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.27-r1.ebuild,v 1.10 2002/10/05 05:39:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.27-r1.ebuild,v 1.11 2002/10/19 01:52:44 vapier Exp $ IUSE="nls acl" @@ -17,12 +17,11 @@ DEPEND="virtual/glibc nls? ( sys-devel/gettext ) sys-apps/debianutils sys-apps/texinfo" - RDEPEND="virtual/glibc" src_unpack() { - unpack $A && - cd $S + unpack ${A} + cd ${S} use acl && patch -p1 < ${FILESDIR}/e2fsprogs-1.27ea-0.8.21.diff } @@ -98,11 +97,10 @@ src_install() { # a 'make install'. They are the template files for # /bin/compile_et. - cd ${S}/lib/et - insinto /usr/share/et - doins et_c.awk et_h.awk - cd ${S}/lib/ss - insinto /usr/share/ss - doins ct_c.awk + cd ${S}/lib/et + insinto /usr/share/et + doins et_c.awk et_h.awk + cd ${S}/lib/ss + insinto /usr/share/ss + doins ct_c.awk } - diff --git a/sys-apps/e2fsprogs/e2fsprogs-1.27.ebuild b/sys-apps/e2fsprogs/e2fsprogs-1.27.ebuild index 81d0bbc41ca8..6e54ffe8ac7f 100644 --- a/sys-apps/e2fsprogs/e2fsprogs-1.27.ebuild +++ b/sys-apps/e2fsprogs/e2fsprogs-1.27.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.27.ebuild,v 1.12 2002/10/05 05:39:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.27.ebuild,v 1.13 2002/10/19 01:52:44 vapier Exp $ IUSE="nls" @@ -17,7 +17,6 @@ DEPEND="virtual/glibc nls? ( sys-devel/gettext ) sys-apps/debianutils sys-apps/texinfo" - RDEPEND="virtual/glibc" src_compile() { @@ -92,11 +91,10 @@ src_install() { # a 'make install'. They are the template files for # /bin/compile_et. - cd ${S}/lib/et - insinto /usr/share/et - doins et_c.awk et_h.awk - cd ${S}/lib/ss - insinto /usr/share/ss - doins ct_c.awk + cd ${S}/lib/et + insinto /usr/share/et + doins et_c.awk et_h.awk + cd ${S}/lib/ss + insinto /usr/share/ss + doins ct_c.awk } - diff --git a/sys-apps/eject/eject-2.0.10.ebuild b/sys-apps/eject/eject-2.0.10.ebuild index 1d0efa9107c2..5b00ff68331e 100644 --- a/sys-apps/eject/eject-2.0.10.ebuild +++ b/sys-apps/eject/eject-2.0.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# /space/gentoo/cvsroot/gentoo-x86/sys-apps/eject/eject-2.0.6.ebuild,v 1.3 2001/12/31 23:47:55 azarah Exp +# $Header: /var/cvsroot/gentoo-x86/sys-apps/eject/eject-2.0.10.ebuild,v 1.8 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="A command to eject a disc from the CD-ROM drive" diff --git a/sys-apps/gawk/gawk-3.1.0-r3.ebuild b/sys-apps/gawk/gawk-3.1.0-r3.ebuild index a835ffe460b7..7c42dd543ec2 100644 --- a/sys-apps/gawk/gawk-3.1.0-r3.ebuild +++ b/sys-apps/gawk/gawk-3.1.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.0-r3.ebuild,v 1.4 2002/10/05 05:39:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.0-r3.ebuild,v 1.5 2002/10/19 01:52:44 vapier Exp $ IUSE="nls build" @@ -24,7 +24,7 @@ src_compile() { --libexecdir=/usr/lib/awk \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ - --host=${CHOST} \ + --host=${CHOST} \ ${myconf} || die emake || die diff --git a/sys-apps/gawk/gawk-3.1.1.ebuild b/sys-apps/gawk/gawk-3.1.1.ebuild index a66747f0b29a..42f7b6e0b624 100644 --- a/sys-apps/gawk/gawk-3.1.1.ebuild +++ b/sys-apps/gawk/gawk-3.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.1.ebuild,v 1.5 2002/10/05 05:39:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.1.ebuild,v 1.6 2002/10/19 01:52:44 vapier Exp $ IUSE="nls build" @@ -24,7 +24,7 @@ src_compile() { --libexecdir=/usr/lib/awk \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ - --host=${CHOST} \ + --host=${CHOST} \ ${myconf} || die emake || die diff --git a/sys-apps/gluelog/gluelog-1.0-r2.ebuild b/sys-apps/gluelog/gluelog-1.0-r2.ebuild index 21e62e7a591f..ebc060618305 100644 --- a/sys-apps/gluelog/gluelog-1.0-r2.ebuild +++ b/sys-apps/gluelog/gluelog-1.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gluelog/gluelog-1.0-r2.ebuild,v 1.7 2002/10/04 06:25:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gluelog/gluelog-1.0-r2.ebuild,v 1.8 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Pipe and socket fittings for the system and kernel logs" @@ -11,9 +11,9 @@ LICENSE="GPL-2" SRC_URI="" DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" src_compile() { - mkdir ${S} cd ${FILESDIR} @@ -22,7 +22,6 @@ src_compile() { } src_install() { - dodir /usr/sbin dosbin ${S}/gluelog ${S}/glueklog exeopts -m0750 -g wheel @@ -37,6 +36,5 @@ src_install() { doexe ${FILESDIR}/svc-${x} done - dodoc ${FILESDIR}/README + dodoc ${FILESDIR}/README } - diff --git a/sys-apps/gzip/gzip-1.3.2.ebuild b/sys-apps/gzip/gzip-1.3.2.ebuild index 0b4d1b94b224..a258db538388 100644 --- a/sys-apps/gzip/gzip-1.3.2.ebuild +++ b/sys-apps/gzip/gzip-1.3.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gzip/gzip-1.3.2.ebuild,v 1.10 2002/10/05 05:39:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gzip/gzip-1.3.2.ebuild,v 1.11 2002/10/19 01:52:44 vapier Exp $ IUSE="nls build" @@ -25,10 +25,8 @@ src_compile() { [ -z "`use nls`" ] && myconf="--disable-nls" # Compiling with gcc3 and higher level of optimization seems to - # cause a segmentation fault in some very rare cases on alpha. - if [ ${ARCH} == "alpha" ]; then - CFLAGS="-O -pipe" - fi + # cause a segmentation fault in some very rare cases on alpha. + [ ${ARCH} == "alpha" ] && CFLAGS="-O -pipe" ./configure --host=${CHOST} \ --prefix=/usr \ diff --git a/sys-apps/hdparm/hdparm-5.2-r1.ebuild b/sys-apps/hdparm/hdparm-5.2-r1.ebuild index e7cd01b48d08..5cdd2c930c5d 100644 --- a/sys-apps/hdparm/hdparm-5.2-r1.ebuild +++ b/sys-apps/hdparm/hdparm-5.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# /space/gentoo/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-5.2.ebuild,v 1.1 2002/05/03 20:39:23 drobbins Exp +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-5.2-r1.ebuild,v 1.6 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Utility to change hard drive performance parameters" diff --git a/sys-apps/hdparm/hdparm-5.2-r2.ebuild b/sys-apps/hdparm/hdparm-5.2-r2.ebuild index fbeaa7f84ee2..63f7e61a0d97 100644 --- a/sys-apps/hdparm/hdparm-5.2-r2.ebuild +++ b/sys-apps/hdparm/hdparm-5.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# /space/gentoo/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-5.2.ebuild,v 1.1 2002/05/03 20:39:23 drobbins Exp +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-5.2-r2.ebuild,v 1.4 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Utility to change hard drive performance parameters" diff --git a/sys-apps/hdparm/hdparm-5.2-r3.ebuild b/sys-apps/hdparm/hdparm-5.2-r3.ebuild index bfc98e90edee..5a4027e6bc19 100644 --- a/sys-apps/hdparm/hdparm-5.2-r3.ebuild +++ b/sys-apps/hdparm/hdparm-5.2-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# /space/gentoo/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-5.2.ebuild,v 1.1 2002/05/03 20:39:23 drobbins Exp +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-5.2-r3.ebuild,v 1.4 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Utility to change hard drive performance parameters" diff --git a/sys-apps/hfsplusutils/hfsplusutils-1.0.4.ebuild b/sys-apps/hfsplusutils/hfsplusutils-1.0.4.ebuild index be8bbf2d9837..ab5fb254c030 100644 --- a/sys-apps/hfsplusutils/hfsplusutils-1.0.4.ebuild +++ b/sys-apps/hfsplusutils/hfsplusutils-1.0.4.ebuild @@ -1,7 +1,6 @@ - # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hfsplusutils/hfsplusutils-1.0.4.ebuild,v 1.9 2002/10/09 15:12:02 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hfsplusutils/hfsplusutils-1.0.4.ebuild,v 1.10 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/hfsplus-1.0.4 MY_P="hfsplus_${PV}" @@ -10,10 +9,10 @@ SRC_URI="http://ftp.penguinppc.org/users/hasi/${MY_P}.src.tar.bz2" HOMEPAGE="http://ftp.penguinppc.org/users/hasi/" KEYWORDS="ppc -x86 -sparc -sparc64 -alpha" DEPEND="sys-devel/autoconf - sys-devel/automake - sys-apps/bzip2" + sys-devel/automake + sys-apps/bzip2" RDEPEND="" -LICENSE="GPL" +LICENSE="GPL-2" SLOT="0" IUSE="" diff --git a/sys-apps/hfsutils/hfsutils-3.2.6.ebuild b/sys-apps/hfsutils/hfsutils-3.2.6.ebuild index 7000cde00272..ca95047ae2dd 100644 --- a/sys-apps/hfsutils/hfsutils-3.2.6.ebuild +++ b/sys-apps/hfsutils/hfsutils-3.2.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $ Header: $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hfsutils/hfsutils-3.2.6.ebuild,v 1.9 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="HFS FS Access utils" @@ -10,19 +10,11 @@ KEYWORDS="ppc -x86 -sparc -sparc64" DEPEND="virtual/glibc" RDEPEND="" SLOT="0" -LICENSE="0" +LICENSE="GPL-2" MAKEOPTS='PREFIX=/usr MANDIR=/usr/share/man' -pkg_setup() { - if [ ${ARCH} != "ppc" ] ; then - eerror "Sorry, this is a PPC only package." - die "Sorry, this as a PPC only pacakge." - fi -} - src_compile() { - ./configure \ --host=${CHOST} \ --prefix=/usr \ @@ -31,7 +23,7 @@ src_compile() { emake || die } -src_install () { +src_install() { dodir /usr/bin dodir /usr/lib dodir /usr/share/man diff --git a/sys-apps/iptables/iptables-1.2.6a-r1.ebuild b/sys-apps/iptables/iptables-1.2.6a-r1.ebuild index 1ae5c8fe454e..7ae3694c8efd 100644 --- a/sys-apps/iptables/iptables-1.2.6a-r1.ebuild +++ b/sys-apps/iptables/iptables-1.2.6a-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.6a-r1.ebuild,v 1.7 2002/10/04 06:26:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.6a-r1.ebuild,v 1.8 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Kernel 2.4 firewall, NAT and packet mangling tools" @@ -10,6 +10,7 @@ KEYWORDS="x86 ppc sparc sparc64" SLOT="0" # iptables is dependent on kernel sources. Strange but true. DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" LICENSE="GPL-2" src_unpack() { @@ -20,14 +21,13 @@ src_unpack() { } src_compile() { - # iptables and libraries are now installed to /sbin and /lib, so that # systems with remote network-mounted /usr filesystems can get their # network interfaces up and running correctly without /usr. # use make, not emake make \ - LIBDIR=/lib \ + LIBDIR=/lib \ BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ @@ -37,7 +37,6 @@ src_compile() { } src_install() { - dodir /usr/{lib,share/man/man8,sbin} make \ LIBDIR=${D}/lib \ diff --git a/sys-apps/iptables/iptables-1.2.6a-r2.ebuild b/sys-apps/iptables/iptables-1.2.6a-r2.ebuild index dba1573a43c9..413f239dae29 100644 --- a/sys-apps/iptables/iptables-1.2.6a-r2.ebuild +++ b/sys-apps/iptables/iptables-1.2.6a-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.6a-r2.ebuild,v 1.3 2002/10/04 06:26:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.6a-r2.ebuild,v 1.4 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Kernel 2.4 firewall, NAT and packet mangling tools" @@ -10,6 +10,7 @@ KEYWORDS="x86 ppc sparc sparc64 alpha" SLOT="0" # iptables is dependent on kernel sources. Strange but true. DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" LICENSE="GPL-2" src_unpack() { @@ -22,24 +23,21 @@ src_unpack() { } src_compile() { - # iptables and libraries are now installed to /sbin and /lib, so that # systems with remote network-mounted /usr filesystems can get their # network interfaces up and running correctly without /usr. # use make, not emake make \ - LIBDIR=/lib \ + LIBDIR=/lib \ BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr/src/linux \ || die - } src_install() { - dodir /usr/{lib,share/man/man8,sbin} make \ LIBDIR=${D}/lib \ diff --git a/sys-apps/iptables/iptables-1.2.6a-r3.ebuild b/sys-apps/iptables/iptables-1.2.6a-r3.ebuild index 43051080160e..325c9b5c6cd0 100644 --- a/sys-apps/iptables/iptables-1.2.6a-r3.ebuild +++ b/sys-apps/iptables/iptables-1.2.6a-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.6a-r3.ebuild,v 1.2 2002/10/04 06:26:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.6a-r3.ebuild,v 1.3 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Kernel 2.4 firewall, NAT and packet mangling tools" @@ -10,6 +10,7 @@ KEYWORDS="x86 ppc sparc sparc64" SLOT="0" # iptables is dependent on kernel sources. Strange but true. DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" LICENSE="GPL-2" src_unpack() { @@ -22,24 +23,21 @@ src_unpack() { } src_compile() { - # iptables and libraries are now installed to /sbin and /lib, so that # systems with remote network-mounted /usr filesystems can get their # network interfaces up and running correctly without /usr. # use make, not emake make \ - LIBDIR=/lib \ + LIBDIR=/lib \ BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr/src/linux \ || die - } src_install() { - dodir /usr/{lib,share/man/man8,sbin} make \ LIBDIR=${D}/lib \ @@ -54,7 +52,6 @@ src_install() { newexe ${FILESDIR}/iptables.init-2 iptables insinto /etc/conf.d newins ${FILESDIR}/iptables.confd-2 iptables - } pkg_postinst() { diff --git a/sys-apps/iptables/iptables-1.2.7.ebuild b/sys-apps/iptables/iptables-1.2.7.ebuild index c9fff258bbdc..baece96a800a 100644 --- a/sys-apps/iptables/iptables-1.2.7.ebuild +++ b/sys-apps/iptables/iptables-1.2.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.7.ebuild,v 1.2 2002/10/04 06:26:11 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.7.ebuild,v 1.3 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Kernel 2.4 firewall, NAT and packet mangling tools" @@ -10,6 +10,7 @@ KEYWORDS="x86 ppc sparc sparc64" SLOT="0" # iptables is dependent on kernel sources. Strange but true. DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" LICENSE="GPL-2" src_unpack() { @@ -26,7 +27,7 @@ src_compile() { # use make, not emake make \ - LIBDIR=/lib \ + LIBDIR=/lib \ BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ diff --git a/sys-apps/iptables/iptables-1.2.7a.ebuild b/sys-apps/iptables/iptables-1.2.7a.ebuild index 8954e3b9e95b..6e056c633021 100644 --- a/sys-apps/iptables/iptables-1.2.7a.ebuild +++ b/sys-apps/iptables/iptables-1.2.7a.ebuild @@ -1,21 +1,22 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.7a.ebuild,v 1.7 2002/10/04 06:26:13 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iptables/iptables-1.2.7a.ebuild,v 1.8 2002/10/19 01:52:44 vapier Exp $ S=${WORKDIR}/${P} DESCRIPTION="Kernel 2.4 firewall, NAT and packet mangling tools" SRC_URI="http://www.iptables.org/files/${P}.tar.bz2" -HOMEPAGE="http://www.iptables.org" +HOMEPAGE="http://www.iptables.org/" KEYWORDS="x86 alpha sparc sparc64" SLOT="0" # iptables is dependent on kernel sources. Strange but true. DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" LICENSE="GPL-2" src_unpack() { unpack ${A} cd ${S} - patch -p1 < ${FILESDIR}/${P}-imq.diff-3 || die + patch -p1 < ${FILESDIR}/${P}-imq.diff-3 || die chmod +x extensions/.IMQ-test* mv Makefile Makefile.orig sed -e "s/-O2/${CFLAGS}/g" -e "s:/usr/local::g" Makefile.orig > Makefile @@ -28,7 +29,7 @@ src_compile() { # use make, not emake make \ - LIBDIR=/lib \ + LIBDIR=/lib \ BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ |