44 lines
967 B
Makefile
44 lines
967 B
Makefile
# $OpenBSD: Makefile,v 1.7 2010/10/18 18:36:47 espie Exp $
|
|
|
|
COMMENT = flickr API library and utility
|
|
|
|
DISTNAME = flickcurl-1.14
|
|
REVISION = 0
|
|
|
|
SHARED_LIBS += flickcurl 1.0 # .1.0
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://librdf.org/flickcurl/
|
|
MAINTAINER = Edd Barrett <edd@openbsd.org>
|
|
|
|
# LGPLv2.1/GPLv2/Apachev2.0
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = devel/gettext
|
|
|
|
WANTLIB = c crypto curl.>=10 idn.>=16 m raptor.>=2 ssl \
|
|
xml2.>=9 xslt z
|
|
|
|
MASTER_SITES = http://download.dajobe.org/flickcurl/
|
|
|
|
USE_LIBTOOL = Yes
|
|
USE_GROFF = Yes
|
|
|
|
LIB_DEPENDS = ::net/curl \
|
|
::devel/libidn \
|
|
::textproc/libxml,-main \
|
|
::textproc/raptor
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = ${CONFIGURE_SHARED} --with-raptor
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/flickcurl
|
|
${INSTALL_DATA} ${FILESDIR}/README.OpenBSD \
|
|
${PREFIX}/share/doc/flickcurl
|
|
|
|
.include <bsd.port.mk>
|