diff options
author | 2004-09-13 07:29:55 +0000 | |
---|---|---|
committer | 2004-09-13 07:29:55 +0000 | |
commit | 29cf9e0394424a758f238dc42a641fce9b0c811d (patch) | |
tree | b2940597453b98122319180168f325587bef457d /sys-apps/groff | |
parent | Wipe out older ebuilds of x11-plugins/wmnd (Manifest recommit) (diff) | |
download | gentoo-2-29cf9e0394424a758f238dc42a641fce9b0c811d.tar.gz gentoo-2-29cf9e0394424a758f238dc42a641fce9b0c811d.tar.bz2 gentoo-2-29cf9e0394424a758f238dc42a641fce9b0c811d.zip |
minor touchups to the ebuild
Diffstat (limited to 'sys-apps/groff')
-rw-r--r-- | sys-apps/groff/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/groff/Manifest | 2 | ||||
-rw-r--r-- | sys-apps/groff/groff-1.19.1.ebuild | 23 |
3 files changed, 16 insertions, 14 deletions
diff --git a/sys-apps/groff/ChangeLog b/sys-apps/groff/ChangeLog index a16d07811a15..ae1c56472b16 100644 --- a/sys-apps/groff/ChangeLog +++ b/sys-apps/groff/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/groff # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/ChangeLog,v 1.42 2004/09/13 05:43:42 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/ChangeLog,v 1.43 2004/09/13 07:29:55 solar Exp $ + + 13 Sep 2004; <solar@gentoo.org> groff-1.19.1.ebuild: + minor touchups to the ebuild *groff-1.19.1 (13 Sep 2004) diff --git a/sys-apps/groff/Manifest b/sys-apps/groff/Manifest index 3749fc41afe5..ff26741e434f 100644 --- a/sys-apps/groff/Manifest +++ b/sys-apps/groff/Manifest @@ -1,5 +1,5 @@ MD5 0731e5193754b6fcbc962d13f0eef29b groff-1.18.1-r4.ebuild 3146 -MD5 59a73f905a8359ce86228f1352ce0330 groff-1.19.1.ebuild 3315 +MD5 4c8594ee704ce8c9a100568f4a544cc7 groff-1.19.1.ebuild 3363 MD5 04bb47e5545e19beeb54970d16368d90 groff-1.18.1-r1.ebuild 2303 MD5 a5e8030b4580d14da6770c540d755c11 groff-1.18.1-r3.ebuild 2985 MD5 3c5cf62ff5c8b1393960a31a8ea2a610 groff-1.19.ebuild 3307 diff --git a/sys-apps/groff/groff-1.19.1.ebuild b/sys-apps/groff/groff-1.19.1.ebuild index 3ff1b8f1bcbb..462cf64eb8b0 100644 --- a/sys-apps/groff/groff-1.19.1.ebuild +++ b/sys-apps/groff/groff-1.19.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.19.1.ebuild,v 1.1 2004/09/13 05:43:42 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.19.1.ebuild,v 1.2 2004/09/13 07:29:55 solar Exp $ -inherit eutils flag-o-matic +inherit eutils flag-o-matic gcc MB_PATCH="groff_1.18.1-7" #"${P/-/_}-7" DESCRIPTION="Text formatter used for man pages" @@ -45,15 +45,15 @@ src_unpack() { # Fix syntax error in pic2graph. Closes #32300. sed -i -e "s:groffpic_opts=\"-U\":groffpic_opts=\"-U\";;:" \ - contrib/pic2graph/pic2graph.sh + contrib/pic2graph/pic2graph.sh || die } src_compile() { local myconf= # Fix problems with not finding g++ - [ -z "${CC}" ] && export CC="gcc" - [ -z "${CXX}" ] && export CXX="g++" + export CC="$(gcc-getCC)" + export CXX="$(gcc-getCXX)" case ${ARCH} in alpha) @@ -76,13 +76,12 @@ src_compile() { # ready for production use." filter-flags -fnew-ra - ./configure --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --infodir=\${inforoot} \ - ${myconf} || die + # many fun sandbox errors with econf + myconf="${myconf} --host=${CHOST} --prefix=/usr \ + --mandir=/usr/share/man --infodir=\${inforoot}" + ./configure ${myconf} || die - # Parallel build doesn't work + # Parallel build doesn't work. Patched wanted. emake -j1 || die # Only build X stuff if we have X installed, but do @@ -119,6 +118,6 @@ src_install() { dosym soelim /usr/bin/zsoelim cd ${S} - dodoc BUG-REPORT COPYING ChangeLog FDL MORE.STUFF NEWS \ + dodoc BUG-REPORT ChangeLog FDL MORE.STUFF NEWS \ PROBLEMS PROJECTS README REVISION TODO VERSION } |