41 lines
988 B
Makefile
41 lines
988 B
Makefile
# $OpenBSD: Makefile,v 1.5 2001/11/10 15:44:58 wilfried Exp $
|
|
|
|
COMMENT= "curses-based URL ripper"
|
|
|
|
DISTNAME= urlview-0.9
|
|
CATEGORIES= textproc
|
|
NEED_VERSION= 1.402
|
|
MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/contrib/ \
|
|
ftp://ftp.cs.hmc.edu/pub/me/ \
|
|
ftp://ftp.cs.tu-berlin.de/pub/net/mail/mutt/ \
|
|
ftp://ftp.ilog.fr/pub/Mirrors/mutt/contrib/ \
|
|
ftp://ftp.etri.re.kr/pub/mail/mutt/ \
|
|
ftp://ftp.pnm.net/pub/unix/mutt/contrib/
|
|
|
|
MAINTAINER= Sebastian Stark <seb@todesplanet.de>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
FLAVORS= slang
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mslang}
|
|
LIB_DEPENDS= slang.14::devel/libslang
|
|
CONFIGURE_ARGS= --with-slang=${LOCALBASE}
|
|
CONFIGURE_ENV= LIBS=-lcurses
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/urlview
|
|
${INSTALL_DATA} ${WRKSRC}/sample.urlview ${WRKSRC}/url_handler.sh \
|
|
${PREFIX}/share/examples/urlview
|
|
|
|
.include <bsd.port.mk>
|