The Makefile does install into a directory "${SITE_PERL}/TeXLive" that will result in weird "/TeXLive" (under root). "make package" and "make deinstall" both result in errors. How-To-Repeat: Install the port and try to deinstall it.
Responsible Changed From-To: freebsd-ports-bugs->hrs Over to maintainer (via the GNATS Auto Assign Tool)
= Solution Put a line into the Makefile: USES= perl5
Author: az Date: Sat Oct 5 12:38:08 2013 New Revision: 329447 URL: http://svnweb.freebsd.org/changeset/ports/329447 Log: Add Perl5 as run depend. This allow for port to use SITE_PERL macro. PR: ports/182333 Submitted by: Bertram Scharpf <software@bertram-scharpf.de> Approved by: maintainer (almost timeout) With hat: perl@ Modified: head/print/texlive-infra/Makefile Modified: head/print/texlive-infra/Makefile ============================================================================== --- head/print/texlive-infra/Makefile Sat Oct 5 12:06:39 2013 (r329446) +++ head/print/texlive-infra/Makefile Sat Oct 5 12:38:08 2013 (r329447) @@ -2,6 +2,7 @@ PORTNAME= texlive PORTVERSION= 27610 +PORTREVISION= 1 CATEGORIES= print perl5 MASTER_SITES= ftp://tug.org/tex-archive/systems/texlive/tlnet/archive/ PKGNAMESUFFIX= -infra @@ -11,6 +12,8 @@ DIST_SUBDIR= TeX MAINTAINER= hrs@FreeBSD.org COMMENT= Basic TeXLive infrastructure +USES= perl5 +USE_PERL5= run USE_XZ= yes USE_TEX= texlive texmf NO_BUILD= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!