mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
32 lines
692 B
Makefile
32 lines
692 B
Makefile
# Created by: Jeremy Norris <ishmael27@home.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= giblib
|
|
PORTVERSION= 1.2.4
|
|
PORTREVISION= 11
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= http://linuxbrit.co.uk/downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A utility library that includes a wrapper for imlib2
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USES= pathfix pkgconfig
|
|
USE_EFL= imlib2
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_DEFAULT=DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|: install-docsDATA|:|g' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in AUTHORS ChangeLog README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|