Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Jan 2015 14:06:47 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377896 - head/astro/astrometry
Message-ID:  <201501251406.t0PE6lTN088014@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Sun Jan 25 14:06:46 2015
New Revision: 377896
URL: https://svnweb.freebsd.org/changeset/ports/377896
QAT: https://qat.redports.org/buildarchive/r377896/

Log:
  - Define LICENSE (GPLv2), specify path in USE_LDCONFIG as needed
  - Transfer maintainership to the submitter and bump port revision
  - Wrap overly long lines and beautify them while I'm here again
  
  PR:	197038

Modified:
  head/astro/astrometry/Makefile

Modified: head/astro/astrometry/Makefile
==============================================================================
--- head/astro/astrometry/Makefile	Sun Jan 25 13:59:23 2015	(r377895)
+++ head/astro/astrometry/Makefile	Sun Jan 25 14:06:46 2015	(r377896)
@@ -3,13 +3,16 @@
 
 PORTNAME=	astrometry
 PORTVERSION=	0.50
+PORTREVISION=	1
 CATEGORIES=	astro
 MASTER_SITES=	http://www.astrometry.net/downloads/
 DISTNAME=	${PORTNAME}.net-${PORTVERSION}
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	antont@inbox.lv
 COMMENT=	Software for describing astronomical images
 
+LICENSE=	GPLv2
+
 BUILD_DEPENDS=	${PYNUMPY}
 LIB_DEPENDS=	libcairo.so:${PORTSDIR}/graphics/cairo \
 		libcfitsio.so:${PORTSDIR}/astro/cfitsio \
@@ -19,7 +22,7 @@ LIB_DEPENDS=	libcairo.so:${PORTSDIR}/gra
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 USES=		gmake pkgconfig python tar:bzip2
-USE_LDCONFIG=	yes
+USE_LDCONFIG=	${PREFIX}/${PORTNAME}/lib
 ALL_TARGET=	all extra
 MAKE_ENV=	INSTALL_DIR=${STAGEDIR}${PREFIX}/${PORTNAME}
 MAKE_JOBS_UNSAFE=	yes
@@ -36,9 +39,9 @@ post-patch:
 post-install:
 	@${REINPLACE_CMD} -i '' -e 's|${STAGEDIR}||' \
 		${STAGEDIR}${PREFIX}/${PORTNAME}/etc/${PORTNAME}.cfg
-	@${FIND} ${STAGEDIR}${PREFIX}/${PORTNAME}/bin -type f -not -name "*.py" \
-		-exec ${STRIP_CMD} {} \;
-	@${FIND} ${STAGEDIR}${PREFIX}/${PORTNAME}/lib -type f -name "*.so" \
-		-exec ${STRIP_CMD} {} \;
+	@${FIND} ${STAGEDIR}${PREFIX}/${PORTNAME}/bin \
+		-type f -not -name "*.py" -exec ${STRIP_CMD} {} \;
+	@${FIND} ${STAGEDIR}${PREFIX}/${PORTNAME}/lib \
+		-type f -name "*.so" -exec ${STRIP_CMD} {} \;
 
 .include <bsd.port.mk>



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