b707782e78
The nap isn't really maintained by the real author anymore. Instead, there is another project which aims to continue the original author's idea. The new version is A LOT more stable, with various new fixes and improvements. The homepage is http://theory.stanford.edu/~selinger/nap/ Quick changelog with the main things: - fixed a security bug (string format attack) ( http://www.shmoo.com/mail/bugtraq/sep00/msg00942.shtml ) - added --user, --pass, --email, --upload, --download, --dataport, --connection, --maxusers options to override settings in config file. - look for config and library files in user's home directory, rather than current directory. Also, renamed these files more discreetly as .napconf and .nap_shared. - fixed several memory leaks and null pointer bugs. from maintainer
30 lines
703 B
Makefile
30 lines
703 B
Makefile
# $OpenBSD: Makefile,v 1.3 2001/04/04 10:53:44 reinhard Exp $
|
|
|
|
COMMENT= 'gnu curses-based napster client'
|
|
|
|
VER= 1.4.4-ps-2
|
|
DISTNAME= nap-${VER}
|
|
CATEGORIES= audio
|
|
NEED_VERSION= 1.363
|
|
|
|
HOMEPAGE= http://theory.stanford.edu/~selinger/nap/
|
|
|
|
MAINTAINER= Peter Valchev <pvalchev@home.com>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/nap
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/nap
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/nap
|
|
${INSTALL_DATA} ${WRKSRC}/nap.conf.dist ${PREFIX}/share/examples/nap
|
|
|
|
.include <bsd.port.mk>
|