diff options
author | George Shapovalov <george@gentoo.org> | 2002-09-01 18:48:36 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-09-01 18:48:36 +0000 |
commit | a1c2d1a813b1bb24046e1bc16c1d0ccb258baa44 (patch) | |
tree | 1375cd0ba11ae33dfc72612f0ba53bc872dddf28 /dev-libs | |
parent | unmasked as it's the only one (diff) | |
download | gentoo-2-a1c2d1a813b1bb24046e1bc16c1d0ccb258baa44.tar.gz gentoo-2-a1c2d1a813b1bb24046e1bc16c1d0ccb258baa44.tar.bz2 gentoo-2-a1c2d1a813b1bb24046e1bc16c1d0ccb258baa44.zip |
manpage location fix
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/expat/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/expat/expat-1.95.4.ebuild | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/dev-libs/expat/ChangeLog b/dev-libs/expat/ChangeLog index bcadef1961d8..91b727cb40df 100644 --- a/dev-libs/expat/ChangeLog +++ b/dev-libs/expat/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for dev-libs/expat # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.6 2002/08/08 13:31:36 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.7 2002/09/01 18:48:36 george Exp $ *expat-1.95.4 (23 Jul 2002) + 01 Sep 2002; George Shapovalov <george@gentoo.org> expat-1.95.4.ebuild : + + fixed man page install location + 08 Aug 2002; Seemant Kulleen <seemant@gentoo.org> expat-1.95.4.ebuild : Made more FHS compliant. diff --git a/dev-libs/expat/expat-1.95.4.ebuild b/dev-libs/expat/expat-1.95.4.ebuild index 0f99277706fc..fd56c694b83f 100644 --- a/dev-libs/expat/expat-1.95.4.ebuild +++ b/dev-libs/expat/expat-1.95.4.ebuild @@ -1,6 +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/dev-libs/expat/expat-1.95.4.ebuild,v 1.4 2002/08/14 11:52:27 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-1.95.4.ebuild,v 1.5 2002/09/01 18:48:36 george Exp $ S=${WORKDIR}/${P} DESCRIPTION="XML parsing libraries" @@ -8,20 +8,24 @@ SRC_URI="mirror://sourceforge/expat/${P}.tar.gz" HOMEPAGE="http://expat.sourceforge.net" DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" SLOT="0" LICENSE="as-is" KEYWORDS="x86 ppc sparc sparc64" src_compile() { - econf || die + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man/man1 || die "configure failed" # parallel make doesnt work make || die } src_install() { - einstall || die + make prefix=${D}/usr \ + mandir=${D}/usr/share/man/man1 install || die "make install failed" dodoc COPYING Changes MANIFEST README dohtml doc/* |