diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2003-11-18 07:07:29 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2003-11-18 07:07:29 +0000 |
commit | d4f613d3e254eddf18073318e2003e421d15bed9 (patch) | |
tree | c321abbc48821433f7d16f604772a106b8a7cba2 /app-sci | |
parent | Fixing bug 33396 (diff) | |
download | historical-d4f613d3e254eddf18073318e2003e421d15bed9.tar.gz historical-d4f613d3e254eddf18073318e2003e421d15bed9.tar.bz2 historical-d4f613d3e254eddf18073318e2003e421d15bed9.zip |
Fixing bug 33396
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/gri/Manifest | 4 | ||||
-rw-r--r-- | app-sci/gri/files/info-install.patch | 11 | ||||
-rw-r--r-- | app-sci/gri/gri-2.12.5.ebuild | 11 |
3 files changed, 23 insertions, 3 deletions
diff --git a/app-sci/gri/Manifest b/app-sci/gri/Manifest index ea46e94b74b7..171975c2c135 100644 --- a/app-sci/gri/Manifest +++ b/app-sci/gri/Manifest @@ -1,6 +1,6 @@ MD5 99b8ec5f803dd65e8c36eb11c3aa915d gri-2.12.4.ebuild 871 -MD5 9e56606e3f9da0f724516a90c5a71b04 gri-2.12.5.ebuild 969 -MD5 d5073391bd896d12e9ad64145029491c ChangeLog 897 +MD5 5cfbccebbcd098d2ca195ab5de0bcd72 gri-2.12.5.ebuild 969 +MD5 ce44b0dd2e851b861dfd3cfee4a4d95f ChangeLog 1040 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 3ff2f79f380f7fbd8143355281919629 files/digest-gri-2.12.4 60 MD5 014ac9c6c2924d77992d8b95b2df5ba8 files/digest-gri-2.12.5 60 diff --git a/app-sci/gri/files/info-install.patch b/app-sci/gri/files/info-install.patch new file mode 100644 index 000000000000..5c510d236866 --- /dev/null +++ b/app-sci/gri/files/info-install.patch @@ -0,0 +1,11 @@ +--- doc/Makefile 2003-05-20 21:15:56.000000000 +0200 ++++ doc/Makefile.new 2003-11-18 07:42:47.000000000 +0100 +@@ -124,7 +124,7 @@ + info-install: + $(INSTALL) -d $(INFO_DIR) + cp gri.info* $(INFO_DIR) +- (cd $(INFO_DIR) ; gzip -f --best gri.info gri.info-[0-9] gri.info-[0-9][0-9]) ++ (cd $(INFO_DIR) ; gzip -f --best gri.info gri.info-*) + chmod 644 $(INFO_DIR)/gri.info* + + info-install-solaris: diff --git a/app-sci/gri/gri-2.12.5.ebuild b/app-sci/gri/gri-2.12.5.ebuild index fa60541e9c45..97ce19c40a11 100644 --- a/app-sci/gri/gri-2.12.5.ebuild +++ b/app-sci/gri/gri-2.12.5.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/gri/gri-2.12.5.ebuild,v 1.2 2003/11/04 10:35:30 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/gri/gri-2.12.5.ebuild,v 1.3 2003/11/18 07:07:24 phosphan Exp $ + +inherit eutils IUSE="" @@ -14,6 +16,13 @@ KEYWORDS="x86" DEPEND=">=app-sci/netcdf-3.5.0" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/info-install.patch +} + src_compile() { econf || die emake || die |