mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
7c47779cb9
${PERL5} points to a specific version of perl, say, perl5.22.1, it is fine to use it in a ports Makefile to do Perly things, but ports using it must use ${PERL}, that points to /usr/local/bin/perl so that if the minor version is updated, the shebang keep working. While there, make some ports use shebangfix, regen a few patches, and bump PORTREVISION where a shebang went from PERL5 to PERL. PR: 205367 With hat: portmgr Sponsored by: Absolight
24 lines
615 B
Makefile
24 lines
615 B
Makefile
# Created by: Juergen Lock <nox@jelal.kn-bremen.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cdlabelgen
|
|
PORTVERSION= 4.2.0
|
|
CATEGORIES= print perl5
|
|
MASTER_SITES= http://www.aczoom.com/pub/tools/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Generate postscript for frontcards and traycards for CDs
|
|
|
|
USES= perl5 tar:tgz shebangfix
|
|
SHEBANG_FILES= cdlabelgen
|
|
NO_BUILD= yes
|
|
MAKE_ARGS= BASE_DIR="${STAGEDIR}${PREFIX}" \
|
|
LIB_DIR="${STAGEDIR}${DATADIR}" \
|
|
INSTALL="${INSTALL_SCRIPT}" \
|
|
INSTALL_DIR="${MKDIR}" \
|
|
INSTALL_FILE="${INSTALL_DATA}" \
|
|
INSTALL_MAN="${INSTALL_MAN}" \
|
|
MAN_DIR="${STAGEDIR}${PREFIX}/man"
|
|
|
|
.include <bsd.port.mk>
|