diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:53:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 21:53:42 +0000 |
commit | fba28fa229545cefe49f3b6d99b7002e93915d6a (patch) | |
tree | d862b1ee5e02cfb1d960491331c0a61c3aef32b6 /app-editors | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | gentoo-2-fba28fa229545cefe49f3b6d99b7002e93915d6a.tar.gz gentoo-2-fba28fa229545cefe49f3b6d99b7002e93915d6a.tar.bz2 gentoo-2-fba28fa229545cefe49f3b6d99b7002e93915d6a.zip |
Changed src_install () to src_install()
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/bluefish/bluefish-0.7-r2.ebuild | 28 | ||||
-rw-r--r-- | app-editors/bluefish/bluefish-2002.11.17.ebuild | 21 |
2 files changed, 15 insertions, 34 deletions
diff --git a/app-editors/bluefish/bluefish-0.7-r2.ebuild b/app-editors/bluefish/bluefish-0.7-r2.ebuild index 8935461f195a..01792cf9f68b 100644 --- a/app-editors/bluefish/bluefish-0.7-r2.ebuild +++ b/app-editors/bluefish/bluefish-0.7-r2.ebuild @@ -1,41 +1,31 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-0.7-r2.ebuild,v 1.12 2002/10/20 18:37:25 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-0.7-r2.ebuild,v 1.13 2002/11/30 21:52:16 vapier Exp $ -IUSE="nls perl" - -S=${WORKDIR}/${P} DESCRIPTION="Bluefish is a GTK HTML editor for the experienced web designer or programmer." SRC_URI="http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/${P}.tar.bz2" HOMEPAGE="http://bluefish.openoffice.nl/" + LICENSE="GPL-2" KEYWORDS="x86 ppc sparc sparc64" SLOT="0" +IUSE="nls perl" DEPEND="=x11-libs/gtk+-1.2* >=media-libs/imlib-1.9.10-r1 - perl? ( sys-devel/perl ) - nls? ( sys-devel/gettext )" + perl? ( sys-devel/perl ) + nls? ( sys-devel/gettext )" src_compile() { - - local myconf + local myconf="--with-autocomplet" use perl && myconf="${myconf} --with-perl" use nls || myconf="${myconf} --disable-nls" - - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --host=${CHOST} \ - --with-autocomplet \ - ${myconf} || die - - emake || die + econf ${myconf} + emake || die } -src_install () { - +src_install() { makefiles=`find . -name Makefile` for f in $makefiles; do mv $f $f.orig diff --git a/app-editors/bluefish/bluefish-2002.11.17.ebuild b/app-editors/bluefish/bluefish-2002.11.17.ebuild index 7afc742d29e8..3a9143098e60 100644 --- a/app-editors/bluefish/bluefish-2002.11.17.ebuild +++ b/app-editors/bluefish/bluefish-2002.11.17.ebuild @@ -1,17 +1,17 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-2002.11.17.ebuild,v 1.1 2002/11/17 21:03:35 hanno Exp $ - -IUSE="nls perl" +# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-2002.11.17.ebuild,v 1.2 2002/11/30 21:53:42 vapier Exp $ MY_PV=`echo ${PV} | sed -e 's/\./-/g'` S=${WORKDIR}/${PN}-gtk2 DESCRIPTION="Bluefish is a GTK HTML editor for the experienced web designer or programmer." SRC_URI="http://pkedu.fbt.eitn.wau.nl/~olivier/snapshots/${PN}-gtk2port-${MY_PV}.tgz" HOMEPAGE="http://bluefish.openoffice.nl/" + LICENSE="GPL-2" KEYWORDS="~x86 ~ppc ~sparc ~sparc64" SLOT="0" +IUSE="nls perl" DEPEND=">=x11-libs/gtk+-2.0.5 >=media-libs/freetype-2.0.9 @@ -19,26 +19,17 @@ DEPEND=">=x11-libs/gtk+-2.0.5 perl? ( sys-devel/perl ) nls? ( sys-devel/gettext )" - src_compile() { - - local myconf + local myconf="--with-autocomplet" use perl && myconf="${myconf} --with-perl" use nls || myconf="${myconf} --disable-nls" - - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --host=${CHOST} \ - --with-autocomplet \ - ${myconf} || die + econf ${myconf} emake || die } -src_install () { - +src_install() { makefiles=`find . -name Makefile` for f in $makefiles; do mv $f $f.orig |