diff options
author | ade <ade@FreeBSD.org> | 2003-06-27 06:58:32 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2003-06-27 06:58:32 +0800 |
commit | 9487d820b3247d8654d99544f8144188dcec810a (patch) | |
tree | 740462af7ed8e371913ea7f6b12533a99dd524ac /x11-themes | |
parent | dfe03c1be7cf9f1612091e1e697a7e74f7002416 (diff) | |
download | freebsd-ports-gnome-9487d820b3247d8654d99544f8144188dcec810a.tar.gz freebsd-ports-gnome-9487d820b3247d8654d99544f8144188dcec810a.tar.zst freebsd-ports-gnome-9487d820b3247d8654d99544f8144188dcec810a.zip |
libtool uber-patch
* kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5
* upgrade repo-copied devel/libtool14 to 1.4.3
* break out libltdl into its own separate port
* move to version-numbered binaries/scripts (ie: there is *no* 'libtool'
any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends)
Approved by: portmgr (kris) - for the bsd.port.mk hooks
Tested by: bento 4-exp builds (repeatedly)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/gtk-bluecurve-theme/Makefile | 7 | ||||
-rw-r--r-- | x11-themes/qt-bluecurve-theme/Makefile | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/x11-themes/gtk-bluecurve-theme/Makefile b/x11-themes/gtk-bluecurve-theme/Makefile index db525cf87a5d..0b58b28473f8 100644 --- a/x11-themes/gtk-bluecurve-theme/Makefile +++ b/x11-themes/gtk-bluecurve-theme/Makefile @@ -15,14 +15,14 @@ DISTFILES= redhat-artwork-${PORTVERSION}-${RH_SUBVERSION}.src.rpm MAINTAINER= rzheka@users.sourceforge.net COMMENT= Bluecurve unified-look theme for GTK1 and GTK2 from RedHat 8.0 -BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/archivers/rpm2cpio \ - libtool:${PORTSDIR}/devel/libtool +BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/archivers/rpm2cpio WRKSRC= ${WRKDIR}/redhat-artwork-${PORTVERSION} USE_GMAKE= yes USE_X_PREFIX= yes USE_GNOME= gdkpixbuf USE_REINPLACE= yes +USE_LIBTOOL= yes RH_SUBVERSION= 1 THEMES_SUBDIRS= ${WRKSRC}/art/gtk/Bluecurve1 @@ -57,6 +57,9 @@ post-patch: @${REINPLACE_CMD} -e 's#-O2#${CFLAGS}#' ${WRKSRC}/art/gtk/Bluecurve1/Makefile @${REINPLACE_CMD} -e 's#-O2#${CFLAGS}#' ${WRKSRC}/art/gtk/Bluecurve/Makefile +do-configure: + @${DO_NADA} + do-build: @for theme_dir in ${THEMES_SUBDIRS};do \ (cd $$theme_dir; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}); \ diff --git a/x11-themes/qt-bluecurve-theme/Makefile b/x11-themes/qt-bluecurve-theme/Makefile index 305ceb0591c4..a94dcd776712 100644 --- a/x11-themes/qt-bluecurve-theme/Makefile +++ b/x11-themes/qt-bluecurve-theme/Makefile @@ -15,10 +15,11 @@ DISTFILES= redhat-artwork-${PORTVERSION}-${RH_SUBVERSION}.src.rpm MAINTAINER= rzheka@users.sourceforge.net COMMENT= Bluecurve unified-look theme for QT3 from RedHat 8.0 -BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/archivers/rpm2cpio \ - libtool:${PORTSDIR}/devel/libtool +BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/archivers/rpm2cpio WRKSRC= ${WRKDIR}/redhat-artwork-${PORTVERSION} +USE_LIBTOOL= yes +#LIBTOOLFILES= # none USE_GMAKE= yes USE_X_PREFIX= yes USE_REINPLACE= yes @@ -37,6 +38,10 @@ do-extract: fi ${CP} ${FILESDIR}/Makefile-qt3 ${WRKSRC}/art/qt/Bluecurve/Makefile +# There's no configure script, but we need libtool to build +do-configure: + @${DO_NADA} + post-patch: @${REINPLACE_CMD} -e 's#-O2#${CFLAGS}#' ${WRKSRC}/art/qt/Bluecurve/Makefile @${RM} ${THEMES_SUBDIRS}/bluecurve.moc |