mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
6f6fbe4bdf
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
33 lines
676 B
Makefile
33 lines
676 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: xbiso
|
|
# Date created: Jan 28, 2004
|
|
# Whom: ijliao ij
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xbiso
|
|
PORTVERSION= 0.6.1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= XBox xdvdfs iso extraction utility
|
|
|
|
LIB_DEPENDS= ftp.3:${PORTSDIR}/ftp/ftplib
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/xbiso
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|$$(CPPFLAGS)|@CPPFLAGS@|g ; \
|
|
s|= @LIBS@|= @LDFLAGS@ @LIBS@|g' ${WRKSRC}/Makefile.in
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xbiso ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|