60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
38 lines
905 B
Makefile
38 lines
905 B
Makefile
# Created by: Tilman Linneweh <arved@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= liblrdf
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 7
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= GENTOO
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library for manipulating RDF files describing LADSPA plugins
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
|
|
LIB_DEPENDS= libicuuc.so:${PORTSDIR}/devel/icu \
|
|
libyajl.so:${PORTSDIR}/devel/yajl \
|
|
libcurl.so:${PORTSDIR}/ftp/curl \
|
|
libraptor2.so:${PORTSDIR}/textproc/raptor2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf iconv libtool pathfix pkgconfig
|
|
USE_GNOME= libxml2 libxslt
|
|
USE_LDCONFIG= yes
|
|
USE_OPENSSL= yes
|
|
PATHFIX_MAKEFILEIN= Makefile.am
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CFLAGS+= -I${OPENSSLINC}
|
|
LDFLAGS+= -L${OPENSSLLIB}
|
|
|
|
WRKSRC= ${WRKDIR}/swh-LRDF-7ebc032
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC}/m4 -type l -delete
|
|
|
|
.include <bsd.port.mk>
|