diff options
author | Hiroki Tagato <tagattie@FreeBSD.org> | 2025-06-05 12:07:01 +0000 |
---|---|---|
committer | Hiroki Tagato <tagattie@FreeBSD.org> | 2025-06-05 12:19:35 +0000 |
commit | 76dcbb55be7279fe58d5a1ed86edca94d2367273 (patch) | |
tree | 09ed206e8e007a56e9e4b9291d5a7c185ef3302d | |
parent | 9a6f2e14ec7df7186e544030aea78e7fc0a605c9 (diff) |
devel/libunicode: add CONFLICTS_INSTALL with devel/libunicode-contour
They install libunicode.so to the same path. While here, reorder
variables to make portclippy happy.
-rw-r--r-- | devel/libunicode/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/devel/libunicode/Makefile b/devel/libunicode/Makefile index 894a7c91ee36..1f238fed7cf8 100644 --- a/devel/libunicode/Makefile +++ b/devel/libunicode/Makefile @@ -1,6 +1,6 @@ PORTNAME= libunicode PORTVERSION= 0.4 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= devel gnome MASTER_SITES= GNOME/sources/libunicode/0.4 DISTNAME= ${PORTNAME}-${PORTVERSION}.gnome @@ -10,12 +10,18 @@ COMMENT= Library for manipulating Unicode characters and strings WWW= https://www.gnome.org/ USES= iconv libtool -GNU_CONFIGURE= yes + USE_LDCONFIG= yes + +GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=${PREFIX}/share \ --datadir=${PREFIX}/share + CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib + +CONFLICTS_INSTALL= libunicode-contour + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} .include <bsd.port.mk> |