Bug 182333 - print/texlive-infra still uses SITE_PERL
Summary: print/texlive-infra still uses SITE_PERL
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Hiroki Sato
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-23 22:20 UTC by Bertram Scharpf
Modified: 2013-10-05 13:40 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bertram Scharpf 2013-09-23 22:20:00 UTC
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.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-23 22:20:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->hrs

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Bertram Scharpf 2013-09-26 14:42:44 UTC
= Solution

Put a line into the Makefile:

    USES=	perl5
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-10-05 13:38:16 UTC
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"
Comment 4 Andrej Zverev freebsd_committer freebsd_triage 2013-10-05 13:38:30 UTC
State Changed
From-To: open->closed

Committed. Thanks!