diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 04:50:25 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 04:50:25 +0000 |
commit | 73e3ea5e25fa32f734ec655121878ceb743f0d5c (patch) | |
tree | c5affa096d2d160fd25d79b07e6313b70899b07e /media-gfx/autotrace | |
parent | Added libapreq dep. (diff) | |
download | historical-73e3ea5e25fa32f734ec655121878ceb743f0d5c.tar.gz historical-73e3ea5e25fa32f734ec655121878ceb743f0d5c.tar.bz2 historical-73e3ea5e25fa32f734ec655121878ceb743f0d5c.zip |
cleanup
Diffstat (limited to 'media-gfx/autotrace')
-rw-r--r-- | media-gfx/autotrace/autotrace-0.26-r1.ebuild | 22 | ||||
-rw-r--r-- | media-gfx/autotrace/autotrace-0.27a.ebuild | 13 |
2 files changed, 17 insertions, 18 deletions
diff --git a/media-gfx/autotrace/autotrace-0.26-r1.ebuild b/media-gfx/autotrace/autotrace-0.26-r1.ebuild index 84934c67d034..bc513b558ad2 100644 --- a/media-gfx/autotrace/autotrace-0.26-r1.ebuild +++ b/media-gfx/autotrace/autotrace-0.26-r1.ebuild @@ -1,12 +1,11 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-gfx/autotrace/autotrace-0.26-r1.ebuild,v 1.1 2001/10/06 10:38:04 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/autotrace/autotrace-0.26-r1.ebuild,v 1.2 2002/04/28 04:50:25 seemant Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Converts Bitmaps to vector-grahics" -SRC_URI="http://homepages.go.com/homepages/m/a/r/martweb/${A}" +SRC_URI="http://homepages.go.com/homepages/m/a/r/martweb/${P}.tar.gz" HOMEPAGE="http://homepages.go.com/homepages/m/a/r/martweb/AutoTrace.htm" DEPEND="virtual/glibc @@ -16,17 +15,16 @@ DEPEND="virtual/glibc src_compile() { - try ./configure --prefix=/usr --host=${CHOST} -# cp Makefile Makefile.orig -# sed -e "s:\$(LINK):\$(LINK) -lXt:" Makefile.orig > Makefile - try make + ./configure --prefix=/usr || die + # cp Makefile Makefile.orig + # sed -e "s:\$(LINK):\$(LINK) -lXt:" Makefile.orig > Makefile + make || die } src_install () { - cd ${S} - try make DESTDIR=${D} install - dodoc AUTHORS COPYING ChangeLog NEWS README + cd ${S} + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog NEWS README } - diff --git a/media-gfx/autotrace/autotrace-0.27a.ebuild b/media-gfx/autotrace/autotrace-0.27a.ebuild index ebecb9b08e04..4232b5224b0e 100644 --- a/media-gfx/autotrace/autotrace-0.27a.ebuild +++ b/media-gfx/autotrace/autotrace-0.27a.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-gfx/autotrace/autotrace-0.27a.ebuild,v 1.2 2002/04/28 04:50:25 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Converts Bitmaps to vector-grahics" -SRC_URI="http://prdownloads.sourceforge.net/autotrace/autotrace-${PV}.tar.gz" +SRC_URI="http://prdownloads.sourceforge.net/${PN}/${P}.tar.gz" HOMEPAGE="http://autotrace.sourceforge.net/" DEPEND="virtual/glibc @@ -14,11 +15,11 @@ DEPEND="virtual/glibc src_compile() { - ./configure --host=${CHOST} \ - --prefix=/usr || die + ./configure --host=${CHOST} \ + --prefix=/usr || die -# cp Makefile Makefile.orig -# sed -e "s:\$(LINK):\$(LINK) -lXt:" Makefile.orig > Makefile + # cp Makefile Makefile.orig + # sed -e "s:\$(LINK):\$(LINK) -lXt:" Makefile.orig > Makefile make || die } |