diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-08-26 22:06:08 +0800 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-08-26 22:06:08 +0800 |
commit | 216b5a285fdcc1456a307fcc60f3507c20d613eb (patch) | |
tree | d0c8617b772b8f0a175d436d938b8d844590b41f /sysutils/gtk-imonc | |
parent | b829518a7d432b7cc2546fde7f032238d1db13dc (diff) | |
download | freebsd-ports-gnome-216b5a285fdcc1456a307fcc60f3507c20d613eb.tar.gz freebsd-ports-gnome-216b5a285fdcc1456a307fcc60f3507c20d613eb.tar.zst freebsd-ports-gnome-216b5a285fdcc1456a307fcc60f3507c20d613eb.zip |
- Fix missing library problems when the linker enforces explicit linking
PR: 192062
Exp-run by: antoine
Approved by: portmgr (antoine)
Diffstat (limited to 'sysutils/gtk-imonc')
-rw-r--r-- | sysutils/gtk-imonc/Makefile | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/sysutils/gtk-imonc/Makefile b/sysutils/gtk-imonc/Makefile index 2ebac168b41e..0649549926da 100644 --- a/sysutils/gtk-imonc/Makefile +++ b/sysutils/gtk-imonc/Makefile @@ -12,22 +12,12 @@ COMMENT= GTK2-based imond-client to control an on(e) disc fli4l router LICENSE= GPLv2 # (or later) -LIB_DEPENDS= libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \ - libpcre.so:${PORTSDIR}/devel/pcre \ - libcairo.so:${PORTSDIR}/graphics/cairo \ - libpng15.so:${PORTSDIR}/graphics/png \ - libfreetype.so:${PORTSDIR}/print/freetype2 \ - libexpat.so:${PORTSDIR}/textproc/expat2 \ - libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig - GNU_CONFIGURE= yes USES= pkgconfig gettext iconv -USE_GNOME= gdkpixbuf2 gtk20 -USE_XORG= pixman x11 xau xcb xcomposite xcursor xdamage xdmcp xext \ - xfixes xi xinerama xrandr xrender - +USE_GNOME= gtk20 +USE_XORG= x11 CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lX11 post-patch: @${REINPLACE_CMD} -e \ |