diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-11-06 03:20:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-11-06 03:20:53 +0000 |
commit | 334cce314bce37269772b78d3ac785c1a1bcd3ee (patch) | |
tree | b7ad6201e14d4c9801eec0d7409b70ef11fbc8c7 /media-libs/libcaca | |
parent | fix a silly libdir bug and mark 1.1 stable on amd64 (Manifest recommit) (diff) | |
download | gentoo-2-334cce314bce37269772b78d3ac785c1a1bcd3ee.tar.gz gentoo-2-334cce314bce37269772b78d3ac785c1a1bcd3ee.tar.bz2 gentoo-2-334cce314bce37269772b78d3ac785c1a1bcd3ee.zip |
touchups
Diffstat (limited to 'media-libs/libcaca')
-rw-r--r-- | media-libs/libcaca/libcaca-0.9-r1.ebuild | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/media-libs/libcaca/libcaca-0.9-r1.ebuild b/media-libs/libcaca/libcaca-0.9-r1.ebuild index 360165a951c5..36a89b4dff59 100644 --- a/media-libs/libcaca/libcaca-0.9-r1.ebuild +++ b/media-libs/libcaca/libcaca-0.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.9-r1.ebuild,v 1.1 2004/09/30 21:08:46 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaca/libcaca-0.9-r1.ebuild,v 1.2 2004/11/06 03:20:53 vapier Exp $ inherit eutils @@ -10,7 +10,7 @@ SRC_URI="http://sam.zoy.org/projects/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64 ~ppc64 ~mips" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="ncurses slang doc imlib X" DEPEND="ncurses? ( >=sys-libs/ncurses-5.3 ) @@ -24,23 +24,21 @@ src_unpack() { cd ${WORKDIR} # Let libtool build the libraries, see BUG #57359 epatch ${FILESDIR}/${P}-libtool.patch + libtoolize --force || die "libtoolize" + aclocal || die "aclocal" + automake --add-missing || die "automake" + autoconf || die "autoconf" } src_compile() { - #57359 - libtoolize --force - aclocal - automake --add-missing - autoconf - # temp font fix #44128 export VARTEXFONTS="${T}/fonts" econf \ - `use_enable doc` \ - `use_enable ncurses` \ - `use_enable slang` \ - `use_enable imlib imlib2` \ - `use_enable X x11` \ + $(use_enable doc) \ + $(use_enable ncurses) \ + $(use_enable slang) \ + $(use_enable imlib imlib2) \ + $(use_enable X x11) \ || die emake || die unset VARTEXFONTS @@ -48,6 +46,6 @@ src_compile() { src_install() { mv doc/man/man3caca doc/man/man3 - make install DESTDIR=${D} || die + make install DESTDIR="${D}" || die dodoc AUTHORS BUGS ChangeLog NEWS NOTES README TODO } |