diff options
author | Tupone Alfredo <tupone@gentoo.org> | 2019-07-26 08:44:09 +0200 |
---|---|---|
committer | Tupone Alfredo <tupone@gentoo.org> | 2019-07-26 08:45:22 +0200 |
commit | 1080ec3defe35b1161935994afc48310b1f1ec27 (patch) | |
tree | fb81bf1a7bc45b412c919999759be83d389c0201 /sci-mathematics/psmt2-frontend/files | |
parent | app-misc/mc: drop slash stripping in ${ED} (diff) | |
download | gentoo-1080ec3defe35b1161935994afc48310b1f1ec27.tar.gz gentoo-1080ec3defe35b1161935994afc48310b1f1ec27.tar.bz2 gentoo-1080ec3defe35b1161935994afc48310b1f1ec27.zip |
sci-mathematics/psmt2-frontend: add psmt2-frontend
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Diffstat (limited to 'sci-mathematics/psmt2-frontend/files')
-rw-r--r-- | sci-mathematics/psmt2-frontend/files/psmt2-frontend-0.2-gentoo.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sci-mathematics/psmt2-frontend/files/psmt2-frontend-0.2-gentoo.patch b/sci-mathematics/psmt2-frontend/files/psmt2-frontend-0.2-gentoo.patch new file mode 100644 index 000000000000..74fbed08bf6b --- /dev/null +++ b/sci-mathematics/psmt2-frontend/files/psmt2-frontend-0.2-gentoo.patch @@ -0,0 +1,22 @@ +--- a/Makefile.in 2019-07-20 19:20:06.818740706 +0200 ++++ b/Makefile.in 2019-07-20 19:21:33.437581073 +0200 +@@ -18,7 +18,7 @@ + libdir=@libdir@ + # exec_prefix=@exec_prefix@ + # BINDIR=$(DESTDIR)@bindir@ +-LIBDIR=$(prefix)$(libdir) ++LIBDIR=$(libdir) + # DATADIR=$(DESTDIR)@datadir@/psmt2-frontend + + # where to install the man page +@@ -119,8 +119,8 @@ + ############## + + install: all META +- mkdir -p $(DESTDIR)$(LIBDIR) +- OCAMLFIND_DESTDIR=$(DESTDIR)$(LIBDIR) \ ++ mkdir -p $(DESTDIR)$(OCAMLLIB) ++ OCAMLFIND_DESTDIR=$(DESTDIR)$(OCAMLLIB) \ + ocamlfind install psmt2-frontend src/$(LIBNAME).* src/*.mli META + + |