diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-10-11 07:07:52 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-10-11 07:07:52 +0000 |
commit | 7b00a1bdf47619907aaab5c5079844eff95c1923 (patch) | |
tree | 9a19b16f161c8bcf0c608dae5a4ef0e5610c6b72 /app-text/xlhtml | |
parent | new upstream (diff) | |
download | gentoo-2-7b00a1bdf47619907aaab5c5079844eff95c1923.tar.gz gentoo-2-7b00a1bdf47619907aaab5c5079844eff95c1923.tar.bz2 gentoo-2-7b00a1bdf47619907aaab5c5079844eff95c1923.zip |
fix package (bug #10980) and add for ~x86
Diffstat (limited to 'app-text/xlhtml')
-rw-r--r-- | app-text/xlhtml/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/xlhtml/Manifest | 4 | ||||
-rw-r--r-- | app-text/xlhtml/xlhtml-0.5.ebuild | 25 |
3 files changed, 25 insertions, 9 deletions
diff --git a/app-text/xlhtml/ChangeLog b/app-text/xlhtml/ChangeLog index 9d077319785f..5f634de34efb 100644 --- a/app-text/xlhtml/ChangeLog +++ b/app-text/xlhtml/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/xlhtml # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xlhtml/ChangeLog,v 1.1 2003/04/17 21:00:32 chouser Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xlhtml/ChangeLog,v 1.2 2003/10/11 07:07:48 robbat2 Exp $ + + 11 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> xlhtml-0.5.ebuild: + fix package (bug #10980) and add for ~x86 *xlhtml-0.5 (17 Apr 2003) diff --git a/app-text/xlhtml/Manifest b/app-text/xlhtml/Manifest index 953607cecbdc..2902cfa4b76b 100644 --- a/app-text/xlhtml/Manifest +++ b/app-text/xlhtml/Manifest @@ -1,3 +1,3 @@ -MD5 36e1aa37909670b7366636e38f7cb772 ChangeLog 327 -MD5 f1d8705b7320a61c9b2e7a695514f3a0 xlhtml-0.5.ebuild 866 +MD5 1c270939781abfcf0a096bd191172d00 xlhtml-0.5.ebuild 1209 +MD5 b4ad375101ff4dc34ac5eab07ea3e9f2 ChangeLog 443 MD5 207489e10e404ccf5261e29cfcdfe714 files/digest-xlhtml-0.5 58 diff --git a/app-text/xlhtml/xlhtml-0.5.ebuild b/app-text/xlhtml/xlhtml-0.5.ebuild index 65cd1582415d..e5d2104e81c4 100644 --- a/app-text/xlhtml/xlhtml-0.5.ebuild +++ b/app-text/xlhtml/xlhtml-0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xlhtml/xlhtml-0.5.ebuild,v 1.1 2003/04/17 21:00:32 chouser Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xlhtml/xlhtml-0.5.ebuild,v 1.2 2003/10/11 07:07:48 robbat2 Exp $ inherit gnuconfig @@ -10,21 +10,34 @@ SRC_URI="mirror://sourceforge/chicago/${P}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha" +KEYWORDS="~alpha ~x86" IUSE="" DEPEND="" -src_compile() { +src_unpack() { + unpack ${A} + cd ${S}; gnuconfig_update config.sub config.guess + # This is needed specifically for depcomp, which is necessary for # building xlhtml, but isn't included. - touch depcomp || die "Failed to create depcomp" - gnuconfig_update config.sub config.guess depcomp + cd ${S}; aclocal; autoconf + cd ${S}; automake --add-missing +} +src_compile() { econf || die "econf failed for ${P}" emake || die "emake failed for ${P}" } src_install() { make DESTDIR=${D} install || die "make install failed for ${P}" - dodoc AUTHORS + dodoc AUTHORS COPYING INSTALL README + docinto cole + dodoc cole/{AUTHORS,COPYING,NEWS,ChangeLog,THANKS,TODO} + docinto ppthtml + dodoc ppthtml/{ChangeLog,README,THANKS} + docinto xlhtml + dodoc xlhtml/{ChangeLog,README,THANKS,TODO} + rm -rf xlhtml/contrib/CVS + cp -ra xlhtml/contrib ${D}/usr/share/doc/${PF}/xlhtml } |