diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-16 19:33:15 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-16 19:33:15 +0000 |
commit | 60c572d71e9f896b058ad11a3e548938db1f1649 (patch) | |
tree | da7139d7eec5bef3374827fd18bab938e71db62f /sys-apps/parted | |
parent | nls bugfix (diff) | |
download | gentoo-2-60c572d71e9f896b058ad11a3e548938db1f1649.tar.gz gentoo-2-60c572d71e9f896b058ad11a3e548938db1f1649.tar.bz2 gentoo-2-60c572d71e9f896b058ad11a3e548938db1f1649.zip |
removed older ebuilds
Diffstat (limited to 'sys-apps/parted')
-rw-r--r-- | sys-apps/parted/files/digest-parted-1.4.24 | 1 | ||||
-rw-r--r-- | sys-apps/parted/files/digest-parted-1.4.24-r1 | 1 | ||||
-rw-r--r-- | sys-apps/parted/parted-1.4.24-r1.ebuild | 63 | ||||
-rw-r--r-- | sys-apps/parted/parted-1.4.24.ebuild | 53 |
4 files changed, 0 insertions, 118 deletions
diff --git a/sys-apps/parted/files/digest-parted-1.4.24 b/sys-apps/parted/files/digest-parted-1.4.24 deleted file mode 100644 index fe4a7ebada6c..000000000000 --- a/sys-apps/parted/files/digest-parted-1.4.24 +++ /dev/null @@ -1 +0,0 @@ -MD5 1a0667bb4f0f167bcfd46bb1b72b8bee parted-1.4.24.tar.gz 872914 diff --git a/sys-apps/parted/files/digest-parted-1.4.24-r1 b/sys-apps/parted/files/digest-parted-1.4.24-r1 deleted file mode 100644 index fe4a7ebada6c..000000000000 --- a/sys-apps/parted/files/digest-parted-1.4.24-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 1a0667bb4f0f167bcfd46bb1b72b8bee parted-1.4.24.tar.gz 872914 diff --git a/sys-apps/parted/parted-1.4.24-r1.ebuild b/sys-apps/parted/parted-1.4.24-r1.ebuild deleted file mode 100644 index e5624b007953..000000000000 --- a/sys-apps/parted/parted-1.4.24-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Peter Gavin <pete@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.4.24-r1.ebuild,v 1.2 2002/03/27 23:12:32 seemant Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="An advanced partition modification system" -SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz - ftp://gatekeeper.dec.com/pub/GNU/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/${PN}" - -DEPEND="virtual/glibc - >=sys-apps/e2fsprogs-1.19-r2 - readline? ( >=sys-libs/readline-4.1-r2 ) - nls? ( >=sys-devel/gettext-0.10.38 ) - python? ( >=dev-lang/python-2.0 )" - -src_unpack() { - unpack ${A} - if [ -z "`use nls`" ] - then - touch ${S}/parted/libintl.h - touch ${S}/debug/clearfat/libintl.h - find ${S}/libparted/ -type d -exec touch {}/libintl.h \; - fi -} - -src_compile() { - - if [ "`use readline`" ] - then - myconf="${myconf} --with-readline" - fi - if [ "`use python`" ] - then - myconf="${myconf} --with-python" - fi - if [ -z "`use nls`" ] - then - myconf="${myconf} --disable-nls" - fi - - ./configure --prefix=/usr \ - --target=${CHOST} \ - --mandir=/usr/share/man \ - ${myconf} || die - - emake || die -} - -src_install() { - - make DESTDIR=${D} install || die - - if [ -z "`use bootcd`" ] - then - dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO - cd doc ; docinto doc - dodoc API COPYING.DOC FAT USER USER.jp - else - rm -rf ${D}/usr/share ${D}/usr/include ${D}/usr/lib/lib*.{a,la} - fi -} diff --git a/sys-apps/parted/parted-1.4.24.ebuild b/sys-apps/parted/parted-1.4.24.ebuild deleted file mode 100644 index 87fc8f5b8002..000000000000 --- a/sys-apps/parted/parted-1.4.24.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Peter Gavin <pete@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.4.24.ebuild,v 1.2 2002/03/06 18:55:22 gbevin Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="An advanced partition modification system" -SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz - ftp://gatekeeper.dec.com/pub/GNU/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/${PN}" - -DEPEND="virtual/glibc - >=sys-apps/e2fsprogs-1.19-r2 - readline? ( >=sys-libs/readline-4.1-r2 ) - nls? ( >=sys-devel/gettext-0.10.38 ) - python? ( >=dev-lang/python-2.0 )" - - -src_compile() { - - if [ "`use readline`" ] - then - myconf="${myconf} --with-readline" - fi - if [ "`use python`" ] - then - myconf="${myconf} --with-python" - fi - if [ -z "`use nls`" ] - then - myconf="${myconf} --disable-nls" - fi - - ./configure --prefix=/usr \ - --target=${CHOST} \ - ${myconf} || die - - emake || die -} - -src_install() { - - make DESTDIR=${D} install || die - - if [ -z "`use bootcd`" ] - then - dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO - cd doc ; docinto doc - dodoc API COPYING.DOC FAT USER USER.jp - else - rm -rf ${D}/usr/share ${D}/usr/include ${D}/usr/lib/lib*.{a,la} - fi -} |