diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-17 09:43:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-17 09:43:02 +0000 |
commit | d7c98cc135e3623a2e4a58eefdb68a923a4764d5 (patch) | |
tree | b83c3f15e14f7e252eecd963d228d6e330bd41e1 /media-gfx/pfaedit | |
parent | Revision bump - this version of transcode should work flawlessy with mplayer. (diff) | |
download | gentoo-2-d7c98cc135e3623a2e4a58eefdb68a923a4764d5.tar.gz gentoo-2-d7c98cc135e3623a2e4a58eefdb68a923a4764d5.tar.bz2 gentoo-2-d7c98cc135e3623a2e4a58eefdb68a923a4764d5.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'media-gfx/pfaedit')
-rw-r--r-- | media-gfx/pfaedit/pfaedit-021105.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/media-gfx/pfaedit/pfaedit-021105.ebuild b/media-gfx/pfaedit/pfaedit-021105.ebuild index 89677b09ed56..7797ea6c4bb0 100644 --- a/media-gfx/pfaedit/pfaedit-021105.ebuild +++ b/media-gfx/pfaedit/pfaedit-021105.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pfaedit/pfaedit-021105.ebuild,v 1.1 2002/11/12 07:49:38 jrray Exp $ - -IUSE="png gif jpeg tiff truetype X" +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pfaedit/pfaedit-021105.ebuild,v 1.2 2002/11/17 09:42:03 vapier Exp $ S="${WORKDIR}/${PN}" DESCRIPTION="postscript font editor and converter" @@ -12,6 +10,7 @@ HOMEPAGE="http://pfaedit.sourceforge.net/" SLOT="0" LICENSE="BSD" KEYWORDS="~x86" +IUSE="png gif jpeg tiff truetype X" DEPEND="png? ( >=media-libs/libpng-1.2.4 ) gif? ( >=media-libs/libungif-4.1.0-r1 ) @@ -19,19 +18,17 @@ DEPEND="png? ( >=media-libs/libpng-1.2.4 ) tiff? ( >=media-libs/tiff-3.5.7-r1 ) truetype? ( >=media-libs/freetype-2.1.2 )" -RDEPEND=${DEPEND} - src_compile() { local myconf="" use X || myconf="--without-x" - econf ${myconf} --prefix=/usr --host=${CHOST} + econf ${myconf} make || die } src_install() { # make install fails if this directory doesn't exist - mkdir -p ${D}/usr/lib + dodir /usr/lib einstall dodoc AUTHORS COPYING LICENSE README } |