summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/di')
-rw-r--r--sys-apps/di/ChangeLog7
-rw-r--r--sys-apps/di/Manifest6
-rw-r--r--sys-apps/di/di-3.8.ebuild13
-rw-r--r--sys-apps/di/di-3.9.ebuild11
4 files changed, 19 insertions, 18 deletions
diff --git a/sys-apps/di/ChangeLog b/sys-apps/di/ChangeLog
index ddb326f8da7f..cce82bf23783 100644
--- a/sys-apps/di/ChangeLog
+++ b/sys-apps/di/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/di
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/di/ChangeLog,v 1.5 2003/05/25 22:56:17 avenj Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/di/ChangeLog,v 1.6 2003/08/11 16:21:26 iggy Exp $
+
+ 11 Aug 2003; <iggy@gentoo.org> di-3.9.ebuild:
+ the configure script is not all there, use the Build script to configure and
+ compile everything, and install everythign manually (there's only 4 things),
+ fixes 25006, thanks to kloeri
*di-3.9 (25 May 2003)
diff --git a/sys-apps/di/Manifest b/sys-apps/di/Manifest
index ca933ee25fcf..0739263cc60b 100644
--- a/sys-apps/di/Manifest
+++ b/sys-apps/di/Manifest
@@ -1,5 +1,5 @@
-MD5 ad30bb3cb7d6d0af6b04f3c4047ac494 ChangeLog 541
-MD5 13e4632347683e5a2a1207b181bff2a8 di-3.8.ebuild 711
-MD5 17829139b94145adb25fb57731ec3a81 di-3.9.ebuild 667
+MD5 4e883331e1beba309a6e1cc0d61be897 di-3.9.ebuild 566
+MD5 b1770a483b3b31826fc600e1c4de531f ChangeLog 779
+MD5 a416aed7299d7fe0c76217f74f75ff67 di-3.8.ebuild 566
MD5 d9eed2b4300db0460af223dcec93dca7 files/digest-di-3.8 58
MD5 880adda194084b4dd5607b2930286dbc files/digest-di-3.9 58
diff --git a/sys-apps/di/di-3.8.ebuild b/sys-apps/di/di-3.8.ebuild
index f982d24f7d2c..afba5a536f29 100644
--- a/sys-apps/di/di-3.8.ebuild
+++ b/sys-apps/di/di-3.8.ebuild
@@ -1,8 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/di/di-3.8.ebuild,v 1.4 2003/06/21 21:19:39 drobbins Exp $
-
-# This ebuild was generated by Ebuilder v0.4.
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/di/di-3.8.ebuild,v 1.5 2003/08/11 16:21:26 iggy Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="Disk Information Utility"
@@ -14,13 +12,12 @@ DEPEND=""
SLOT="0"
src_compile() {
- ./configure \
- --host=${CHOST} || die "./configure failed"
- emake || die
+ prefix=${D} ./Build || die
}
src_install () {
- mkdir -p ${D}usr/share/man/man1/
- make MANDIR=${D}usr/share/man/man1 PREFIX=${D}usr install || die
+ doman di.1
+ dobin di
+ dosym /usr/bin/di /usr/bin/mi
dodoc LICENSE README
}
diff --git a/sys-apps/di/di-3.9.ebuild b/sys-apps/di/di-3.9.ebuild
index ef752771df9e..baa2a4664b68 100644
--- a/sys-apps/di/di-3.9.ebuild
+++ b/sys-apps/di/di-3.9.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/di/di-3.9.ebuild,v 1.2 2003/06/21 21:19:39 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/di/di-3.9.ebuild,v 1.3 2003/08/11 16:21:26 iggy Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="Disk Information Utility"
@@ -12,13 +12,12 @@ DEPEND=""
SLOT="0"
src_compile() {
- ./configure \
- --host=${CHOST} || die "./configure failed"
- emake || die
+ prefix=${D} ./Build || die
}
src_install () {
- mkdir -p ${D}/usr/share/man/man1/
- make MANDIR=${D}/usr/share/man/man1 PREFIX=${D}/usr install || die
+ doman di.1
+ dobin di
+ dosym /usr/bin/di /usr/bin/mi
dodoc LICENSE README
}