mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
59e02117ae
Changes: http://www.boost.org/users/history/version_1_63_0.html PR: 215598 Exp-run by: antoine Approved by: office (bapt) MFH: 2017Q1
45 lines
977 B
Makefile
45 lines
977 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= linuxdcpp
|
|
PORTVERSION= 1.1.0
|
|
PORTREVISION= 5
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= http://launchpadlibrarian.net/69733951/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Port of the DC++ Direct Connect client to Unix-like systems
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/License.txt
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/boost/version.hpp:devel/boost-libs
|
|
|
|
USES= gettext iconv pkgconfig scons tar:bzip2
|
|
USE_GNOME= libglade2
|
|
USE_OPENSSL= yes
|
|
PORTDOCS= *
|
|
DESTDIRNAME= FAKE_ROOT
|
|
|
|
OPTIONS_DEFINE= NOTIFY
|
|
OPTIONS_DEFAULT=NOTIFY
|
|
|
|
.if defined(WITH_DEBUG)
|
|
MAKE_ARGS+= debug=1
|
|
.endif
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify
|
|
NOTIFY_MAKE_ARGS_OFF= libnotify=0
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s/'iconv'/'${ICONV_LIB:S/-l//}'/" \
|
|
${WRKSRC}/SConstruct
|
|
@${REINPLACE_CMD} -e 's|g++|${CXX}|' ${WRKSRC}/SConstruct
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|