Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Dec 2013 10:31:41 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r336154 - in head/astro: astrometry celestia foxtrotgps glunarclock gpsbabel gpscorrelate mymoon nightfall openuniverse p5-Astro-FITS-CFITSIO rmap roadmap sunclock wcslib wmglobe xephem...
Message-ID:  <201312111031.rBBAVfSB016037@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Dec 11 10:31:41 2013
New Revision: 336154
URL: http://svnweb.freebsd.org/changeset/ports/336154

Log:
  In preparation for making libtool generate libraries with a sane name, fix all
  LIB_DEPENDS in astro
  
  With hat:	portmgr

Modified:
  head/astro/astrometry/Makefile
  head/astro/celestia/Makefile
  head/astro/foxtrotgps/Makefile
  head/astro/glunarclock/Makefile
  head/astro/gpsbabel/Makefile
  head/astro/gpscorrelate/Makefile
  head/astro/mymoon/Makefile
  head/astro/nightfall/Makefile
  head/astro/openuniverse/Makefile
  head/astro/p5-Astro-FITS-CFITSIO/Makefile
  head/astro/rmap/Makefile
  head/astro/roadmap/Makefile
  head/astro/sunclock/Makefile
  head/astro/wcslib/Makefile
  head/astro/wmglobe/Makefile
  head/astro/xephem/Makefile
  head/astro/xmoontool/Makefile
  head/astro/xplanet/Makefile
  head/astro/xtide/Makefile

Modified: head/astro/astrometry/Makefile
==============================================================================
--- head/astro/astrometry/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/astrometry/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -11,10 +11,10 @@ DISTNAME=	astrometry.net-${PORTVERSION}
 MAINTAINER=	dereckson@gmail.com
 COMMENT=	Describes an astronomical image
 
-LIB_DEPENDS=	cairo.2:${PORTSDIR}/graphics/cairo \
-		jpeg.11:${PORTSDIR}/graphics/jpeg \
-		png15:${PORTSDIR}/graphics/png \
-		netpbm.1:${PORTSDIR}/graphics/netpbm
+LIB_DEPENDS=	libcairo.so:${PORTSDIR}/graphics/cairo \
+		libjpeg.so:${PORTSDIR}/graphics/jpeg \
+		libpng15.so:${PORTSDIR}/graphics/png \
+		libnetpbm.so:${PORTSDIR}/graphics/netpbm
 BUILD_DEPENDS=	${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy
 RUN_DEPENDS=	${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy
 

Modified: head/astro/celestia/Makefile
==============================================================================
--- head/astro/celestia/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/celestia/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -13,8 +13,8 @@ COMMENT=	Scriptable space flight simulat
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	jpeg:${PORTSDIR}/graphics/jpeg \
-		png15:${PORTSDIR}/graphics/png
+LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
+		libpng15.so:${PORTSDIR}/graphics/png
 
 NO_STAGE=	yes
 USES=		gettext gmake pkgconfig
@@ -59,7 +59,7 @@ IGNORE=		requires one of the <${UI_LIST}
 
 .if ${CELESTIA_UI} == "gtk" || ${CELESTIA_UI} == "gnome"
 USE_GNOME+=	gnomehack
-LIB_DEPENDS+=	gtkglext-x11-1:${PORTSDIR}/x11-toolkits/gtkglext \
+LIB_DEPENDS+=	libgtkglext-x11-1.so:${PORTSDIR}/x11-toolkits/gtkglext \
 		theora:${PORTSDIR}/multimedia/libtheora
 STARTUP_NOTIFY=	true
 PLIST_FILES+=	share/celestia/celestia-logo.png share/celestia/celestiaui.xml

Modified: head/astro/foxtrotgps/Makefile
==============================================================================
--- head/astro/foxtrotgps/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/foxtrotgps/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,10 +10,10 @@ MASTER_SITES=	http://www.foxtrotgps.org/
 MAINTAINER=	crwhipp@gmail.com
 COMMENT=	Lightweight opensource gps moving map application
 
-LIB_DEPENDS=	curl:${PORTSDIR}/ftp/curl \
-		exif:${PORTSDIR}/graphics/libexif \
-		soup-2.4:${PORTSDIR}/devel/libsoup \
-		gps:${PORTSDIR}/astro/gpsd
+LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl \
+		libexif.so:${PORTSDIR}/graphics/libexif \
+		libsoup-2.so:${PORTSDIR}/devel/libsoup \
+		libgps.so:${PORTSDIR}/astro/gpsd
 
 GNU_CONFIGURE=	yes
 NO_STAGE=	yes

Modified: head/astro/glunarclock/Makefile
==============================================================================
--- head/astro/glunarclock/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/glunarclock/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -11,7 +11,7 @@ MASTER_SITES=	SF
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	GNOME applet that displays the current phase of the Moon
 
-LIB_DEPENDS=	xklavier.12:${PORTSDIR}/x11/libxklavier
+LIB_DEPENDS=	libxklavier.so:${PORTSDIR}/x11/libxklavier
 
 NO_STAGE=	yes
 USES=        pathfix gettext gmake pkgconfig

Modified: head/astro/gpsbabel/Makefile
==============================================================================
--- head/astro/gpsbabel/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/gpsbabel/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,7 +10,7 @@ MASTER_SITES=	https://secure.ohos.nl/dow
 MAINTAINER=	dev2@heesakkers.info
 COMMENT=	GPS file translating tool
 
-LIB_DEPENDS=	expat:${PORTSDIR}/textproc/expat2
+LIB_DEPENDS=	libexpat.so:${PORTSDIR}/textproc/expat2
 
 NO_STAGE=	yes
 USE_AUTOTOOLS=	autoconf

Modified: head/astro/gpscorrelate/Makefile
==============================================================================
--- head/astro/gpscorrelate/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/gpscorrelate/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -13,8 +13,8 @@ COMMENT=	Correlate digital camera photos
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	exiv2:${PORTSDIR}/graphics/exiv2 \
-		gtkmm-2.4:${PORTSDIR}/x11-toolkits/gtkmm24
+LIB_DEPENDS=	libexiv2.so:${PORTSDIR}/graphics/exiv2 \
+		libgtkmm-2.4.so:${PORTSDIR}/x11-toolkits/gtkmm24
 
 OPTIONS_DEFINE=	DOCS
 

Modified: head/astro/mymoon/Makefile
==============================================================================
--- head/astro/mymoon/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/mymoon/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -12,7 +12,7 @@ MASTER_SITE_SUBDIR=	krion
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Show latitude and longitude of the moon
 
-LIB_DEPENDS=	nova:${PORTSDIR}/astro/libnova
+LIB_DEPENDS=	libnova.so:${PORTSDIR}/astro/libnova
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 

Modified: head/astro/nightfall/Makefile
==============================================================================
--- head/astro/nightfall/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/nightfall/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -37,7 +37,7 @@ PLIST_SUB+=	GNOMEUI="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MPGPLOT}
-LIB_DEPENDS+=	pgplot.5:${PORTSDIR}/graphics/pgplot
+LIB_DEPENDS+=	libpgplot.so:${PORTSDIR}/graphics/pgplot
 USE_FORTRAN=	yes
 CONFIGURE_ARGS+=	--with-pgplot-include=${LOCALBASE}/include \
 			--with-pgplot-lib=${LOCALBASE}/lib
@@ -47,7 +47,7 @@ CONFIGURE_ARGS+=	--with-gnuplot
 .endif
 
 .if ${PORT_OPTIONS:MOPENGL}
-LIB_DEPENDS+=	gtkgl-2.0.1:${PORTSDIR}/x11-toolkits/gtkglarea2
+LIB_DEPENDS+=	libgtkgl-2.0.so:${PORTSDIR}/x11-toolkits/gtkglarea2
 USE_GL=		glut
 CONFIGURE_ARGS+=	--with-lib-GL
 .else

Modified: head/astro/openuniverse/Makefile
==============================================================================
--- head/astro/openuniverse/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/openuniverse/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,7 +10,7 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	OpenGL Solar System simulator for X Window System
 
-LIB_DEPENDS=	jpeg.11:${PORTSDIR}/graphics/jpeg
+LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg
 
 USE_GL=		glut
 

Modified: head/astro/p5-Astro-FITS-CFITSIO/Makefile
==============================================================================
--- head/astro/p5-Astro-FITS-CFITSIO/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/p5-Astro-FITS-CFITSIO/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,7 +10,7 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	perl@FreeBSD.org
 COMMENT=	Perl extension for using the cfitsio library
 
-LIB_DEPENDS=	cfitsio:${PORTSDIR}/astro/cfitsio
+LIB_DEPENDS=	libcfitsio.so:${PORTSDIR}/astro/cfitsio
 
 CONFIGURE_ENV=	CFITSIO=${LOCALBASE}
 USES=		perl5

Modified: head/astro/rmap/Makefile
==============================================================================
--- head/astro/rmap/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/rmap/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,7 +10,7 @@ MASTER_SITES=	http://www.reza.net/rmap/
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Generates images of the Earth centered at a particular location
 
-LIB_DEPENDS=	gd:${PORTSDIR}/graphics/gd
+LIB_DEPENDS=	libgd.so:${PORTSDIR}/graphics/gd
 
 GNU_CONFIGURE=	yes
 USES=		gmake

Modified: head/astro/roadmap/Makefile
==============================================================================
--- head/astro/roadmap/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/roadmap/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -11,7 +11,7 @@ DISTNAME=	${PORTNAME}-${PORTVERSION}-src
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Vector-based GPS moving map
 
-LIB_DEPENDS=	expat.6:${PORTSDIR}/textproc/expat2
+LIB_DEPENDS=	libexpat.so:${PORTSDIR}/textproc/expat2
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 BUILD_WRKSRC=	${WRKSRC}/src

Modified: head/astro/sunclock/Makefile
==============================================================================
--- head/astro/sunclock/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/sunclock/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -11,8 +11,8 @@ COMMENT=	Shows which portion of the Eart
 
 LICENSE=	GPLv2
 
-LIB_DEPENDS=	jpeg:${PORTSDIR}/graphics/jpeg \
-		png15:${PORTSDIR}/graphics/png
+LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
+		libpng15.so:${PORTSDIR}/graphics/png
 
 USE_BZIP2=	yes
 USE_XORG=	xpm

Modified: head/astro/wcslib/Makefile
==============================================================================
--- head/astro/wcslib/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/wcslib/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -31,13 +31,13 @@ PGPLOT_DESC=	Add pgplot support (for tes
 
 .if ${PORT_OPTIONS:MCFITSIO} || exists(${LOCALBASE}/lib/libcfitsio.so)
 PLIST_SUB+=		HPXCVT=""
-LIB_DEPENDS+=	cfitsio:${PORTSDIR}/astro/cfitsio
+LIB_DEPENDS+=	libcfitsio.so:${PORTSDIR}/astro/cfitsio
 .else
 PLIST_SUB+=		HPXCVT="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MPGPLOT}
-LIB_DEPENDS+=	pgplot.5:${PORTSDIR}/graphics/pgplot
+LIB_DEPENDS+=	libpgplot.so:${PORTSDIR}/graphics/pgplot
 .endif
 
 post-patch:

Modified: head/astro/wmglobe/Makefile
==============================================================================
--- head/astro/wmglobe/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/wmglobe/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,7 +10,7 @@ MASTER_SITES=	http://hamete.org/static/w
 MAINTAINER=	will@FreeBSD.org
 COMMENT=	A neat xearth-like WindowMaker dockapp
 
-LIB_DEPENDS=	wraster.4:${PORTSDIR}/x11-wm/windowmaker
+LIB_DEPENDS=	libwraster.so:${PORTSDIR}/x11-wm/windowmaker
 
 NO_STAGE=	yes
 MAN1=		wmglobe.1

Modified: head/astro/xephem/Makefile
==============================================================================
--- head/astro/xephem/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/xephem/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -10,8 +10,8 @@ MASTER_SITES=	# http://www.clearskyinsti
 MAINTAINER=	jpaetzel@FreeBSD.org
 COMMENT=	An interactive astronomical ephemeris program
 
-LIB_DEPENDS=	png15:${PORTSDIR}/graphics/png \
-		jpeg.11:${PORTSDIR}/graphics/jpeg
+LIB_DEPENDS=	libpng15.so:${PORTSDIR}/graphics/png \
+		libjpeg.so:${PORTSDIR}/graphics/jpeg
 
 NO_STAGE=	yes
 USES=		gmake motif

Modified: head/astro/xmoontool/Makefile
==============================================================================
--- head/astro/xmoontool/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/xmoontool/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -20,7 +20,7 @@ PLIST_FILES=	bin/xmoontool
 .if defined(WITHOUT_LIBNOVA)
 MAKE_ENV+=	WITHOUT_LIBNOVA=yes
 .else
-LIB_DEPENDS+=	nova:${PORTSDIR}/astro/libnova
+LIB_DEPENDS+=	libnova.so:${PORTSDIR}/astro/libnova
 .endif
 
 pre-everything::

Modified: head/astro/xplanet/Makefile
==============================================================================
--- head/astro/xplanet/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/xplanet/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -27,7 +27,7 @@ MAN1=	xplanet.1
 
 .if ${PORT_OPTIONS:MFREETYPE}
 CONFIGURE_ARGS+=	--with-freetype
-LIB_DEPENDS+=	freetype.9:${PORTSDIR}/print/freetype2
+LIB_DEPENDS+=	libfreetype.so:${PORTSDIR}/print/freetype2
 .else
 CONFIGURE_ARGS+=	--without-freetype
 .endif
@@ -41,35 +41,35 @@ CONFIGURE_ARGS+=	--without-pango
 
 .if ${PORT_OPTIONS:MGIF}
 CONFIGURE_ARGS+=	--with-gif
-LIB_DEPENDS+=	gif.5:${PORTSDIR}/graphics/giflib
+LIB_DEPENDS+=	libgif.so:${PORTSDIR}/graphics/giflib
 .else
 CONFIGURE_ARGS+=	--without-gif
 .endif
 
 .if ${PORT_OPTIONS:MJPEG}
 CONFIGURE_ARGS+=	--with-jpeg
-LIB_DEPENDS+=	jpeg.11:${PORTSDIR}/graphics/jpeg
+LIB_DEPENDS+=	libjpeg.so:${PORTSDIR}/graphics/jpeg
 .else
 CONFIGURE_ARGS+=	--without-jpeg
 .endif
 
 .if ${PORT_OPTIONS:MPNG}
 CONFIGURE_ARGS+=	--with-png
-LIB_DEPENDS+=	png15:${PORTSDIR}/graphics/png
+LIB_DEPENDS+=	libpng15.so:${PORTSDIR}/graphics/png
 .else
 CONFIGURE_ARGS+=	--without-png
 .endif
 
 .if ${PORT_OPTIONS:MPNM}
 CONFIGURE_ARGS+=	--with-pnm
-LIB_DEPENDS+=	netpbm.1:${PORTSDIR}/graphics/netpbm
+LIB_DEPENDS+=	libnetpbm.so:${PORTSDIR}/graphics/netpbm
 .else
 CONFIGURE_ARGS+=	--without-pnm
 .endif
 
 .if ${PORT_OPTIONS:MTIFF}
 CONFIGURE_ARGS+=	--with-tiff
-LIB_DEPENDS+=	tiff.4:${PORTSDIR}/graphics/tiff
+LIB_DEPENDS+=	libtiff.so:${PORTSDIR}/graphics/tiff
 .else
 CONFIGURE_ARGS+=	--without-tiff
 .endif

Modified: head/astro/xtide/Makefile
==============================================================================
--- head/astro/xtide/Makefile	Wed Dec 11 10:04:56 2013	(r336153)
+++ head/astro/xtide/Makefile	Wed Dec 11 10:31:41 2013	(r336154)
@@ -16,11 +16,10 @@ COMMENT=	Harmonic tide clock and tide pr
 
 LICENSE=	GPLv3
 
-LIB_DEPENDS=	png15:${PORTSDIR}/graphics/png
+LIB_DEPENDS=	libpng15.so:${PORTSDIR}/graphics/png
 
 USE_BZIP2=	yes
 USES=		gmake
-USE_GCC=	yes
 GNU_CONFIGURE=	yes
 
 CPPFLAGS+=	-I../${TCD_DISTNAME} -I${LOCALBASE}/include/libpng15 -Wno-deprecated-declarations



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312111031.rBBAVfSB016037>