mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
3fc236ae20
Use autotools "install-strip" target to properly strip the binaries
33 lines
755 B
Makefile
33 lines
755 B
Makefile
# Created by: Jason Helfman <jgh@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libvirt-glib
|
|
PORTVERSION= 0.1.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://libvirt.org/libvirt/glib/
|
|
|
|
MAINTAINER= jgh@FreeBSD.org
|
|
COMMENT= Glib bindings for Libvirt virtualization API
|
|
|
|
LIB_DEPENDS= libvirt.so:${PORTSDIR}/devel/libvirt
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= pathfix pkgconfig gmake
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GNOME= intltool introspection
|
|
USE_PYTHON= 2
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -fstack-protector
|
|
CONFIGURE_ARGS+= --enable-introspection
|
|
INSTALL_TARGET= install-strip
|
|
|
|
SHLIB_VER= 1.0
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's}--quiet}--quiet --libtool=${LIBTOOL}}' \
|
|
${WRKSRC}/libvirt-*/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|