1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/misc/libmetalink/Makefile
2009-03-26 02:57:25 +00:00

51 lines
1.0 KiB
Makefile

# New ports collection makefile for: libmetalink
# Date created: Mon 11 Aug 2008 11:28:33 UTC
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libmetalink
PORTVERSION= 0.0.2
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= lioux@FreeBSD.org
COMMENT= Metalink library written in C language
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= \
--with-libexpat-prefix="${LOCALBASE}" \
--with-libxml2="no"
USE_LDCONFIG= yes
MAKE_JOBS_SAFE= yes
# Examples to install
EXAMPLES_FILES= \
doc/sample.c \
doc/ubuntu-7_10-server-i386_iso.metalink
.ifndef(NOPORTEXAMPLES)
PORTEXAMPLES= *
.endif
post-patch:
# do not automagically install either documents or examples
@${REINPLACE_CMD} -E \
-e 's|^(install:).*|\1|' \
${WRKSRC}/doc/Makefile.in
post-install:
# examples
.ifndef(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
.for file in ${EXAMPLES_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>