diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-04-30 01:39:35 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-04-30 01:39:35 +0000 |
commit | 519185741d51c7302ced08eb6cf85a6064fc28d2 (patch) | |
tree | 327b9f63bcc70e6ab7213d0850dcfad50edd2496 /dev-libs/libofx | |
parent | Changed mailman's gid to daemon to fix bug #19257. (diff) | |
download | gentoo-2-519185741d51c7302ced08eb6cf85a6064fc28d2.tar.gz gentoo-2-519185741d51c7302ced08eb6cf85a6064fc28d2.tar.bz2 gentoo-2-519185741d51c7302ced08eb6cf85a6064fc28d2.zip |
fixed dtd dir
Diffstat (limited to 'dev-libs/libofx')
-rw-r--r-- | dev-libs/libofx/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libofx/Manifest | 4 | ||||
-rw-r--r-- | dev-libs/libofx/libofx-0.6.4.ebuild | 10 |
3 files changed, 15 insertions, 4 deletions
diff --git a/dev-libs/libofx/ChangeLog b/dev-libs/libofx/ChangeLog index 60c339dcaff8..0d9197ae6d6b 100644 --- a/dev-libs/libofx/ChangeLog +++ b/dev-libs/libofx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libofx # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.1 2003/04/28 02:08:57 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/ChangeLog,v 1.2 2003/04/30 01:39:25 liquidx Exp $ + + 30 Apr 2003; Alastair Tse <liquidx@gentoo.org> libofx-0.6.4.ebuild: + make dtd install in a deterministic directory *libofx-0.6.4 (28 Apr 2003) diff --git a/dev-libs/libofx/Manifest b/dev-libs/libofx/Manifest index ad95d41a29df..113e1fe0807d 100644 --- a/dev-libs/libofx/Manifest +++ b/dev-libs/libofx/Manifest @@ -1,3 +1,3 @@ -MD5 6f9c5fdbc4631fd322c51267a8989b2b libofx-0.6.4.ebuild 609 -MD5 162fe34805d7cf906be903f1e84e2483 ChangeLog 348 +MD5 c8d10573de02e59e79b5d709d416aa9b libofx-0.6.4.ebuild 849 +MD5 26fbdd8705020623ab50bc260f591c2a ChangeLog 467 MD5 01e95323fd235e3559b8831adc8d1d34 files/digest-libofx-0.6.4 64 diff --git a/dev-libs/libofx/libofx-0.6.4.ebuild b/dev-libs/libofx/libofx-0.6.4.ebuild index 6a25e836cc3c..44f728e7bd70 100644 --- a/dev-libs/libofx/libofx-0.6.4.ebuild +++ b/dev-libs/libofx/libofx-0.6.4.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/dev-libs/libofx/libofx-0.6.4.ebuild,v 1.1 2003/04/28 02:08:57 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libofx/libofx-0.6.4.ebuild,v 1.2 2003/04/30 01:39:25 liquidx Exp $ DESCRIPTION="Library to support the Open Financial eXchange XML Format" HOMEPAGE="http://libofx.sourceforge.net/" @@ -12,6 +12,14 @@ KEYWORDS="~x86" IUSE="" DEPEND=">=app-text/opensp-1.5" +src_unpack() { + unpack ${A} + + # because we redefine docdir in src_install, we need to make sure the + # dtd's go to the right place, LIBOFX_DTD_DIR + cd ${S}/dtd + sed -i -e 's/$(DESTDIR)$(docdir)/$(DESTDIR)$(LIBOFX_DTD_DIR)/g' Makefile.in +} src_compile() { econf emake || die |