summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-06-27 14:46:38 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-06-27 14:46:38 +0000
commit82c7f13b1dd7ac753c7fefb7c18ebe8db7e66e48 (patch)
tree65fea5573ff8ef709abae8409d114b49e45b7923 /sys-apps
parentBug #229653, fix need for stdint.h headers thanks to Ed Catmur <ed@catmur.co.... (diff)
downloadgentoo-2-82c7f13b1dd7ac753c7fefb7c18ebe8db7e66e48.tar.gz
gentoo-2-82c7f13b1dd7ac753c7fefb7c18ebe8db7e66e48.tar.bz2
gentoo-2-82c7f13b1dd7ac753c7fefb7c18ebe8db7e66e48.zip
Cleanup old ebuilds.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc4-00103-g1beee8d x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/sg3_utils/ChangeLog8
-rw-r--r--sys-apps/sg3_utils/files/sg3_utils-llseek.patch69
-rw-r--r--sys-apps/sg3_utils/sg3_utils-1.11.ebuild33
-rw-r--r--sys-apps/sg3_utils/sg3_utils-1.21.ebuild45
-rw-r--r--sys-apps/sg3_utils/sg3_utils-1.22.ebuild47
-rw-r--r--sys-apps/sg3_utils/sg3_utils-1.23.ebuild46
-rw-r--r--sys-apps/sg3_utils/sg3_utils-1.24.ebuild45
7 files changed, 7 insertions, 286 deletions
diff --git a/sys-apps/sg3_utils/ChangeLog b/sys-apps/sg3_utils/ChangeLog
index 577d05f51f76..f84a3cdd8362 100644
--- a/sys-apps/sg3_utils/ChangeLog
+++ b/sys-apps/sg3_utils/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/sg3_utils
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.43 2008/06/27 14:38:10 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/ChangeLog,v 1.44 2008/06/27 14:46:37 robbat2 Exp $
+
+ 27 Jun 2008; Robin H. Johnson <robbat2@gentoo.org>
+ -files/sg3_utils-llseek.patch, -sg3_utils-1.11.ebuild,
+ -sg3_utils-1.21.ebuild, -sg3_utils-1.22.ebuild, -sg3_utils-1.23.ebuild,
+ -sg3_utils-1.24.ebuild:
+ Cleanup old ebuilds.
*sg3_utils-1.26-r1 (27 Jun 2008)
diff --git a/sys-apps/sg3_utils/files/sg3_utils-llseek.patch b/sys-apps/sg3_utils/files/sg3_utils-llseek.patch
deleted file mode 100644
index 281ed60abf1d..000000000000
--- a/sys-apps/sg3_utils/files/sg3_utils-llseek.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-diff -Naur sg3_utils-1.06-orig/llseek.c sg3_utils-1.06/llseek.c
---- sg3_utils-1.06-orig/llseek.c 2003-10-19 05:36:40.000000000 -0400
-+++ sg3_utils-1.06/llseek.c 2004-08-09 03:46:19.973864969 -0400
-@@ -14,7 +14,7 @@
- #include <errno.h>
- #include <unistd.h>
-
--#if defined(__GNUC__) || defined(HAS_LONG_LONG)
-+#if defined(__GNUC__)
- typedef long long llse_loff_t;
- #else
- typedef long llse_loff_t;
-@@ -24,54 +24,16 @@
-
- #ifdef __linux__
-
--#ifdef HAVE_LLSEEK
--#include <syscall.h>
--
--#else /* HAVE_LLSEEK */
--
- #if defined(__alpha__) || defined(__ia64__) || defined(__s390x__)
-
- #define my_llseek lseek
-
- #else
--#include <linux/unistd.h> /* for __NR__llseek */
--
--static int _llseek (unsigned int, unsigned long,
-- unsigned long, llse_loff_t *, unsigned int);
--
--#ifdef __NR__llseek
--
--static _syscall5(int,_llseek,unsigned int,fd,unsigned long,offset_high,
-- unsigned long, offset_low,llse_loff_t *,result,
-- unsigned int, origin)
--
--#else
--
--/* no __NR__llseek on compilation machine - might give it explicitly */
--static int _llseek (unsigned int fd, unsigned long oh,
-- unsigned long ol, llse_loff_t *result,
-- unsigned int origin) {
-- errno = ENOSYS;
-- return -1;
--}
--
--#endif
-
--static llse_loff_t my_llseek (unsigned int fd, llse_loff_t offset,
-- unsigned int origin)
--{
-- llse_loff_t result;
-- int retval;
--
-- retval = _llseek (fd, ((unsigned long long) offset) >> 32,
-- ((unsigned long long) offset) & 0xffffffff,
-- &result, origin);
-- return (retval == -1 ? (llse_loff_t) retval : result);
--}
-+#define my_llseek lseek64
-
--#endif /* __alpha__ */
-+#endif /* alpha, ia64, s390x */
-
--#endif /* HAVE_LLSEEK */
-
- llse_loff_t llse_llseek (unsigned int fd, llse_loff_t offset,
- unsigned int origin)
diff --git a/sys-apps/sg3_utils/sg3_utils-1.11.ebuild b/sys-apps/sg3_utils/sg3_utils-1.11.ebuild
deleted file mode 100644
index 54771fafa9db..000000000000
--- a/sys-apps/sg3_utils/sg3_utils-1.11.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.11.ebuild,v 1.5 2005/08/31 13:42:31 gustavoz Exp $
-
-inherit eutils
-
-DESCRIPTION="apps for querying the sg SCSI interface (contains rescan_scsi_bus.sh)"
-HOMEPAGE="http://www.torque.net/sg/"
-SRC_URI="http://www.torque.net/sg/p/${P}.tgz
- http://www.garloff.de/kurt/linux/rescan-scsi-bus.sh"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc sparc x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- unpack ${P}.tgz
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-llseek.patch
- sed -i "s:-O2:$CFLAGS:g" Makefile
-}
-
-src_compile() {
- emake || die
-}
-
-src_install() {
- dobin ${DISTDIR}/rescan-scsi-bus.sh || die 'Failed to install rescan-scsi-bus.sh!'
- einstall DESTDIR="${D}" PREFIX=/usr || die 'Failed to install sg3_utils!'
-}
diff --git a/sys-apps/sg3_utils/sg3_utils-1.21.ebuild b/sys-apps/sg3_utils/sg3_utils-1.21.ebuild
deleted file mode 100644
index b74a70e19048..000000000000
--- a/sys-apps/sg3_utils/sg3_utils-1.21.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.21.ebuild,v 1.2 2006/10/05 21:10:32 gustavoz Exp $
-
-inherit eutils
-
-DESCRIPTION="apps for querying the sg SCSI interface (contains rescan_scsi_bus.sh)"
-HOMEPAGE="http://www.torque.net/sg/"
-SRC_URI="http://www.torque.net/sg/p/${P}.tgz
- http://www.garloff.de/kurt/linux/rescan-scsi-bus.sh"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 hppa ~ppc sparc ~x86"
-IUSE=""
-DEPEND="sys-devel/libtool"
-RDEPEND=""
-
-src_unpack() {
- unpack ${P}.tgz
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-llseek.patch
- for i in Makefile utils/Makefile; do
- sed -i \
- -e "/^CFLAGS/s:-g -O2:${CFLAGS}:g" \
- -e '/^PREFIX=/s:/local::' \
- -e 's:$(DESTDIR)/:$(DESTDIR):' \
- -e "/^LIBDIR=/s:/lib$:/$(get_libdir):" \
- -e '/^MANDIR=/s:)/man:)/share/man:' \
- $i || die "sed of $i failed"
- done
-}
-
-src_compile() {
- emake || die "emake failed"
- emake -C utils || die "emake utils failed"
-}
-
-src_install() {
- dobin "${DISTDIR}"/rescan-scsi-bus.sh || die "rescan-scsi-bus.sh failed"
- dodoc examples/*.txt CHANGELOG COVERAGE CREDITS README*
- dohtml doc/*html
- make install DESTDIR="${D}" || die "make install failed"
- make -C utils install DESTDIR="${D}" || die "make install failed"
-}
diff --git a/sys-apps/sg3_utils/sg3_utils-1.22.ebuild b/sys-apps/sg3_utils/sg3_utils-1.22.ebuild
deleted file mode 100644
index c27ebba3cc69..000000000000
--- a/sys-apps/sg3_utils/sg3_utils-1.22.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.22.ebuild,v 1.2 2007/01/16 18:52:20 gustavoz Exp $
-
-inherit eutils
-
-DESCRIPTION="apps for querying the sg SCSI interface (contains rescan_scsi_bus.sh)"
-HOMEPAGE="http://www.torque.net/sg/"
-SRC_URI="http://www.torque.net/sg/p/${P}.tgz
- http://www.garloff.de/kurt/linux/rescan-scsi-bus.sh"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc sparc ~x86"
-IUSE=""
-DEPEND="sys-devel/libtool"
-RDEPEND=""
-
-src_unpack() {
- unpack ${P}.tgz
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-llseek.patch
- for i in Makefile utils/Makefile ; do
- sed -i \
- -e '/^CFLAGS/s:= -g -O2:+=:' \
- -e '/^LDFLAGS/s:=:+=:' \
- -e '/^PREFIX=/s:/local::' \
- -e 's:$(DESTDIR)/:$(DESTDIR):' \
- -e "/^LIBDIR=/s:/lib$:/$(get_libdir):" \
- -e '/^MANDIR=/s:)/man:)/share/man:' \
- -e '/ install /s: -s : :' \
- $i || die "sed of $i failed"
- done
-}
-
-src_compile() {
- emake || die "emake failed"
- emake -C utils || die "emake utils failed"
-}
-
-src_install() {
- dobin "${DISTDIR}"/rescan-scsi-bus.sh || die "rescan-scsi-bus.sh failed"
- dodoc examples/*.txt CHANGELOG COVERAGE CREDITS README*
- dohtml doc/*html
- make install DESTDIR="${D}" || die "make install failed"
- make -C utils install DESTDIR="${D}" || die "make install failed"
-}
diff --git a/sys-apps/sg3_utils/sg3_utils-1.23.ebuild b/sys-apps/sg3_utils/sg3_utils-1.23.ebuild
deleted file mode 100644
index c99f668cedbc..000000000000
--- a/sys-apps/sg3_utils/sg3_utils-1.23.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.23.ebuild,v 1.2 2007/03/08 19:41:11 gustavoz Exp $
-
-inherit eutils
-
-DESCRIPTION="apps for querying the sg SCSI interface (contains rescan_scsi_bus.sh)"
-HOMEPAGE="http://www.torque.net/sg/"
-SRC_URI="http://www.torque.net/sg/p/${P}.tgz
- http://www.garloff.de/kurt/linux/rescan-scsi-bus.sh"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc sparc ~x86"
-IUSE=""
-DEPEND="sys-devel/libtool"
-RDEPEND=""
-
-src_unpack() {
- unpack ${P}.tgz
- cd "${S}"
- for i in Makefile utils/Makefile ; do
- sed -i \
- -e '/^CFLAGS/s:= -g -O2:+=:' \
- -e '/^LDFLAGS/s:=:+=:' \
- -e '/^PREFIX=/s:/local::' \
- -e 's:$(DESTDIR)/:$(DESTDIR):' \
- -e "/^LIBDIR=/s:/lib$:/$(get_libdir):" \
- -e '/^MANDIR=/s:)/man:)/share/man:' \
- -e '/ install /s: -s : :' \
- $i || die "sed of $i failed"
- done
-}
-
-src_compile() {
- emake || die "emake failed"
- emake -C utils || die "emake utils failed"
-}
-
-src_install() {
- dobin "${DISTDIR}"/rescan-scsi-bus.sh || die "rescan-scsi-bus.sh failed"
- dodoc examples/*.txt CHANGELOG COVERAGE CREDITS README*
- dohtml doc/*html
- make install DESTDIR="${D}" || die "make install failed"
- make -C utils install DESTDIR="${D}" || die "make install failed"
-}
diff --git a/sys-apps/sg3_utils/sg3_utils-1.24.ebuild b/sys-apps/sg3_utils/sg3_utils-1.24.ebuild
deleted file mode 100644
index 0c8207ded23c..000000000000
--- a/sys-apps/sg3_utils/sg3_utils-1.24.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sg3_utils/sg3_utils-1.24.ebuild,v 1.6 2007/10/21 12:09:28 robbat2 Exp $
-
-inherit eutils
-
-DESCRIPTION="apps for querying the sg SCSI interface"
-HOMEPAGE="http://www.torque.net/sg/"
-SRC_URI="http://www.torque.net/sg/p/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc sparc x86"
-IUSE=""
-DEPEND="sys-devel/libtool"
-RDEPEND=""
-PDEPEND=">=sys-apps/rescan-scsi-bus-1.24"
-
-src_unpack() {
- unpack ${P}.tgz
- cd "${S}"
- for i in Makefile utils/Makefile ; do
- sed -i \
- -e '/^CFLAGS/s:= -g -O2:+=:' \
- -e '/^LDFLAGS/s:=:+=:' \
- -e '/^PREFIX=/s:/local::' \
- -e 's:$(DESTDIR)/:$(DESTDIR):' \
- -e "/^LIBDIR=/s:/lib$:/$(get_libdir):" \
- -e '/^MANDIR=/s:)/man:)/share/man:' \
- -e '/ install /s: -s : :' \
- $i || die "sed of $i failed"
- done
-}
-
-src_compile() {
- emake || die "emake failed"
- emake -C utils || die "emake utils failed"
-}
-
-src_install() {
- dodoc examples/*.txt CHANGELOG COVERAGE CREDITS README*
- dohtml doc/*html
- make install DESTDIR="${D}" || die "make install failed"
- make -C utils install DESTDIR="${D}" || die "make install failed"
-}