mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
40 lines
791 B
Makefile
40 lines
791 B
Makefile
# Created by: Jeff Burchell <toxic@doobie.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libpar2
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/
|
|
|
|
LICENSE= GPLv2
|
|
|
|
MAINTAINER= toxic@doobie.com
|
|
COMMENT= Library for manipulating PAR2 files, extracted from par2cmdline
|
|
|
|
LIB_DEPENDS= sigc-2.0:${PORTSDIR}/devel/libsigc++20
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
NO_STAGE= yes
|
|
FETCH_ARGS= -pRr
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
USE_LDCONFIG= yes
|
|
USES= pkgconfig
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s/-lstdc++//g" \
|
|
${WRKSRC}/Makefile.in \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|