60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
33 lines
738 B
Makefile
33 lines
738 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= slgrace
|
|
PORTVERSION= 0.2.2
|
|
PORTREVISION= 7
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= ftp://space.mit.edu/pub/davis/slang/v${SLANG_VER}/modules/grace/ \
|
|
ftp://ftp.fu-berlin.de/pub/unix/misc/slang/v${SLANG_VER}/modules/grace/ \
|
|
LOCAL/garga/slgrace
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= SLang module to plot graphs with grace
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libslang.so:${PORTSDIR}/devel/libslang2
|
|
RUN_DEPENDS= grace:${PORTSDIR}/math/grace
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
SLANG_VER= 2.1
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
PLIST_SUB= VERSION=${PORTVERSION}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's, install_docfiles,,' \
|
|
-e '/MKINSDIR.*DEST_DOC_FILES_INSTALL_DIR/d' \
|
|
${WRKSRC}/src/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|