diff options
author | Brian Feldman <green@FreeBSD.org> | 2004-02-25 18:43:30 +0000 |
---|---|---|
committer | Brian Feldman <green@FreeBSD.org> | 2004-02-25 18:43:30 +0000 |
commit | 12734f1267bb4bcaf65ee7bad6b343ffa96249b5 (patch) | |
tree | e1f404736281440bda14c1b68e92ed78df52094e /print/lyx15 | |
parent | BROKEN on alpha 5.x: Does not compile (diff) |
(Purportedly) unbreak installation as per some of the responses in the
PR. I don't see it on my -CURRENT system, but this doesn't break it,
either.
PR: 62405
Diffstat (limited to 'print/lyx15')
-rw-r--r-- | print/lyx15/Makefile | 4 | ||||
-rw-r--r-- | print/lyx15/files/patch-lib::Makefile.am | 15 |
2 files changed, 15 insertions, 4 deletions
diff --git a/print/lyx15/Makefile b/print/lyx15/Makefile index 42bff52c5127..bb129cac0586 100644 --- a/print/lyx15/Makefile +++ b/print/lyx15/Makefile @@ -21,10 +21,6 @@ BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 \ latex:${PORTSDIR}/print/teTeX -BROKEN= "Does not install" -DEPRECATED= ${BROKEN} -EXPIRATION_DATE=2004-04-16 - USE_BZIP2= yes USE_GETTEXT= yes USE_PERL5= yes diff --git a/print/lyx15/files/patch-lib::Makefile.am b/print/lyx15/files/patch-lib::Makefile.am new file mode 100644 index 000000000000..af7f86f7831e --- /dev/null +++ b/print/lyx15/files/patch-lib::Makefile.am @@ -0,0 +1,15 @@ +--- lib/Makefile.am.orig Wed Sep 17 15:13:05 2003 ++++ lib/Makefile.am Wed Feb 18 18:24:39 2004 +@@ -58,8 +58,10 @@ + ln -f -s `kpsewhich $$i` $(DESTDIR)$(pkgdatadir)/xfonts/$$i ; \ + done ; \ + $(INSTALL_DATA) xfonts/fonts.dir $(DESTDIR)$(pkgdatadir)/xfonts/fonts.dir ; \ +- $(INSTALL_DATA) xfonts/fonts.scale $(DESTDIR)$(pkgdatadir)/xfonts/fonts.scale +- test -f xfonts/PSres.upr && $(INSTALL_DATA) xfonts/PSres.upr $(DESTDIR)$(pkgdatadir)/xfonts/PSres.upr ++ $(INSTALL_DATA) xfonts/fonts.scale $(DESTDIR)$(pkgdatadir)/xfonts/fonts.scale ; ++ if test -f xfonts/PSres.upr ; then ++ $(INSTALL_DATA) xfonts/PSres.upr $(DESTDIR)$(pkgdatadir)/xfonts/PSres.upr ; ++ fi + + uninstall-xfonts: + rm -rf $(DESTDIR)$(pkgdatadir)/xfonts |