mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
e55a37ca1d
- Update MASTER_SITES - Support staging PR: ports/184819 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
29 lines
586 B
Makefile
29 lines
586 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= diffmark
|
|
PORTVERSION= 0.10
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.mangrove.cz/diffmark/ \
|
|
http://penguin.cz/~vbarta/diffmark/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= XML diff and merge package
|
|
|
|
USES= pkgconfig
|
|
USE_GNOME= libxml2
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|-lstdc++||' ${WRKSRC}/lib/Makefile.in
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdiffmark.so.2
|
|
|
|
.include <bsd.port.mk>
|