diff options
author | nakai <nakai@FreeBSD.org> | 2000-02-18 10:31:37 +0800 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 2000-02-18 10:31:37 +0800 |
commit | 91d5b3706fd15849a3a53fa0667ae0d65434cc1c (patch) | |
tree | 3d4d71ad3549add1947a168747234f4476a998be /graphics/sodipodi | |
parent | b57853fa9dd7f610d7612b61d7af59140cbcfbd6 (diff) | |
download | freebsd-ports-gnome-91d5b3706fd15849a3a53fa0667ae0d65434cc1c.tar.gz freebsd-ports-gnome-91d5b3706fd15849a3a53fa0667ae0d65434cc1c.tar.zst freebsd-ports-gnome-91d5b3706fd15849a3a53fa0667ae0d65434cc1c.zip |
Fix type in LIB_DEPENDS, and use symlink
PR: ports/16784
Submitted by: "KATO Tsuguru" <tkato@prontomail.ne.jp>
Diffstat (limited to 'graphics/sodipodi')
-rw-r--r-- | graphics/sodipodi/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/graphics/sodipodi/Makefile b/graphics/sodipodi/Makefile index 00e21f6b0d50..fa8148e30cfe 100644 --- a/graphics/sodipodi/Makefile +++ b/graphics/sodipodi/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= http://www.ariman.ee/linux/sodipodi/ MAINTAINER= nakai@FreeBSD.org LIB_DEPENDS= gnome.3:${PORTSDIR}/x11/gnomelibs \ - glade.2:${PORTSDIR}/devel/glade \ + glade.2:${PORTSDIR}/devel/libglade \ gnomeprint.2:${PORTSDIR}/print/gnomeprint \ gdk_pixbuf.1:${PORTSDIR}/graphics/gdk-pixbuf @@ -35,7 +35,9 @@ post-extract: ${RM} ${WRKSRC}/config.cache ${RM} ${WRKSRC}/install-sh ${RM} ${WRKSRC}/mkinstalldirs - ${LN} ${LOCALBASE}/share/automake/install-sh ${WRKSRC}/install-sh - ${LN} ${LOCALBASE}/share/automake/mkinstalldirs ${WRKSRC}/mkinstalldirs + ${LN} -s ${LOCALBASE}/share/automake/install-sh \ + ${WRKSRC}/install-sh + ${LN} -s ${LOCALBASE}/share/automake/mkinstalldirs \ + ${WRKSRC}/mkinstalldirs .include <bsd.port.mk> |