summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-08-01 20:49:12 +0000
committerMike Frysinger <vapier@gentoo.org>2003-08-01 20:49:12 +0000
commitd1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6 (patch)
tree4b27412746e529cf11da9254894bfcfc72032a28 /app-text/uudeview
parentsnapshot update, marked previous version stable (diff)
downloadgentoo-2-d1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6.tar.gz
gentoo-2-d1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6.tar.bz2
gentoo-2-d1e4f2a42e204d4ae3dfb23c57b4c51eba2417d6.zip
touchups
Diffstat (limited to 'app-text/uudeview')
-rw-r--r--app-text/uudeview/ChangeLog10
-rw-r--r--app-text/uudeview/uudeview-0.5.13.ebuild42
-rw-r--r--app-text/uudeview/uudeview-0.5.18.ebuild42
3 files changed, 38 insertions, 56 deletions
diff --git a/app-text/uudeview/ChangeLog b/app-text/uudeview/ChangeLog
index dd6180294b5e..44dc13e359d9 100644
--- a/app-text/uudeview/ChangeLog
+++ b/app-text/uudeview/ChangeLog
@@ -1,11 +1,12 @@
# ChangeLog for app-text/uudeview
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/ChangeLog,v 1.8 2003/02/12 05:35:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/ChangeLog,v 1.9 2003/08/01 20:48:14 vapier Exp $
- 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
-
*uudeview-0.5.18.ebuild (08 Nov 2002)
+ 01 Aug 2003; Mike Frysinger <vapier@gentoo.org> :
+ Cleanup ... use econf, use_enable, and debug USE flag
+
13 Jan 2003; Nick Hadaway <raker@gentoo.org> uudeview-0.5.18.ebuild :
Added DEBUGBUILD support so those with -g options in their make.conf
don't get them stripped out by configure.
@@ -18,6 +19,9 @@
*uudeview-0.5.13.ebuild (04 Jun 2002)
+ 01 Aug 2003; Mike Frysinger <vapier@gentoo.org> :
+ Cleanup ... use econf, use_enable, and debug USE flag
+
2 Aug 2002; phoen][x <phoenix@gentoo.org> uudeview-0.5.13.ebuild :
Added KEYWORDS, SLOT.
diff --git a/app-text/uudeview/uudeview-0.5.13.ebuild b/app-text/uudeview/uudeview-0.5.13.ebuild
index 5ce502ea726b..806ac7f8e9e5 100644
--- a/app-text/uudeview/uudeview-0.5.13.ebuild
+++ b/app-text/uudeview/uudeview-0.5.13.ebuild
@@ -1,38 +1,28 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/uudeview-0.5.13.ebuild,v 1.12 2003/02/13 09:47:34 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/uudeview-0.5.13.ebuild,v 1.13 2003/08/01 20:48:14 vapier Exp $
-IUSE="tcltk"
-
-
-S="${WORKDIR}/${P}"
DESCRIPTION="uu, xx, base64, binhex decoder"
-SRC_URI="http://ibiblio.org/pub/Linux/utils/text/${P}.tar.gz"
HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/"
-KEYWORDS="x86 sparc "
-SLOT="0"
+SRC_URI="http://ibiblio.org/pub/Linux/utils/text/${P}.tar.gz"
+
LICENSE="GPL-2"
-DEPEND="tcltk? ( dev-lang/tcl dev-lang/tk )"
+SLOT="0"
+KEYWORDS="x86 ~sparc"
+IUSE="tcltk debug"
-src_compile() {
- local myconf
- use tcltk || myconf="--disable-tcl --disable-tk"
+DEPEND="tcltk? ( dev-lang/tcl dev-lang/tk )"
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- ${myconf} \
- --mandir=${D}/usr/share/man || die "./configure failed"
- emake || die
+src_compile() {
+ econf \
+ `use_enable tcltk tcl` \
+ `use_enable tcltk tk` \
+ `use_enable debug optimize` \
+ || die
+ make || die
}
-src_install () {
- make \
- prefix=${D}/usr \
- infodir=${D}/usr/share/info \
- install || die
-
- # Install documentation.
+src_install() {
+ einstall MANDIR=${D}/usr/share/man/ || die
dodoc COPYING INSTALL README
}
diff --git a/app-text/uudeview/uudeview-0.5.18.ebuild b/app-text/uudeview/uudeview-0.5.18.ebuild
index 1262237ea40e..c0378baf54ca 100644
--- a/app-text/uudeview/uudeview-0.5.18.ebuild
+++ b/app-text/uudeview/uudeview-0.5.18.ebuild
@@ -1,40 +1,28 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/uudeview-0.5.18.ebuild,v 1.6 2003/02/13 09:47:40 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/uudeview-0.5.18.ebuild,v 1.7 2003/08/01 20:48:14 vapier Exp $
-IUSE="tcltk"
-
-S="${WORKDIR}/${P}"
DESCRIPTION="uu, xx, base64, binhex decoder"
-
-SRC_URI="http://www.fpx.de/fp/Software/UUDeview/download/${P}.tar.gz"
HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/"
-KEYWORDS="x86 ~sparc"
-SLOT="0"
-LICENSE="GPL-2"
-DEPEND="tcltk? ( dev-lang/tcl dev-lang/tk )"
+SRC_URI="http://www.fpx.de/fp/Software/UUDeview/download/${P}.tar.gz"
-src_compile() {
- local myconf
- use tcltk || myconf="--disable-tcl --disable-tk"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="x86 ~sparc"
+IUSE="tcltk debug"
- [ -n "${DEBUGBUILD}" ] && myconf="${myconf} --disable-optimize"
+DEPEND="tcltk? ( dev-lang/tcl dev-lang/tk )"
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- ${myconf} \
- --mandir=${D}/usr/share/man || die "./configure failed"
+src_compile() {
+ econf \
+ `use_enable tcltk tcl` \
+ `use_enable tcltk tk` \
+ `use_enable debug optimize` \
+ || die
make || die
}
-src_install () {
- make \
- prefix=${D}/usr \
- infodir=${D}/usr/share/info \
- install || die
-
- # Install documentation.
+src_install() {
+ einstall MANDIR=${D}/usr/share/man/ || die
dodoc COPYING INSTALL README
}