34 lines
723 B
Makefile
34 lines
723 B
Makefile
# $OpenBSD: Makefile,v 1.37 2013/03/21 08:46:34 ajacoutot Exp $
|
|
|
|
COMMENT= BitTorrent library written in C++
|
|
|
|
DISTNAME= libtorrent-0.12.9
|
|
REVISION= 2
|
|
EPOCH= 0
|
|
SHARED_LIBS += torrent 20.0 # .14.1
|
|
CATEGORIES= net devel
|
|
|
|
HOMEPAGE= http://libtorrent.rakshasa.no/
|
|
MAINTAINER= David Coppa <dcoppa@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}downloads/
|
|
|
|
WANTLIB= crypto m sigc-2.0 stdc++
|
|
BUILD_DEPENDS= devel/cppunit
|
|
LIB_DEPENDS= devel/libsigc++-2
|
|
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--enable-static \
|
|
--with-kqueue \
|
|
--without-epoll \
|
|
--disable-debug
|
|
CONFIGURE_ENV= OPENSSL_CFLAGS=-I/usr/include \
|
|
OPENSSL_LIBS=-lcrypto
|
|
|
|
.include <bsd.port.mk>
|