diff options
author | wiz <wiz@pkgsrc.org> | 2007-11-25 12:15:52 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-11-25 12:15:52 +0000 |
commit | 9c50891ab3599b7cbcc956792712f77d0082357c (patch) | |
tree | dcf8a5043fe2f414f75167dcbf2770bf581bb6e7 /editors/beav/Makefile | |
parent | 9db51297ba87fa5c79f22fc0aa95a1cbe7a9a613 (diff) | |
download | pkgsrc-9c50891ab3599b7cbcc956792712f77d0082357c.tar.gz |
Update to 1.40.18:
beav (1:1.40-18) unstable; urgency=low
* Repackaged with the original 1.40 source so that we get a proper diff.gz.
* defs.h:
+ Removed prototypes for malloc and strcpy/strcat (Closes: #262572).
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sat, 31 Jul 2004 22:42:19 +0200
beav (1:1.40-17) unstable; urgency=low
* debian/control:
+ Set policy to 3.6.1.1.
* beav.1:
+ Fixed documentation location (Closes: #210601).
* Fixed warnings everywhere in the code.
* main.c:
+ Added a help string to tell the user how to quit (Closes: #171933).
* file.c:
+ Fixed an overflow in the filename display routine (Closes: #56546).
* fileio.c:
+ Corrected wrong char signedness assumption that caused backup filenames
to be mangled (Closes: #46376).
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 13 Jul 2004 11:36:18 +0200
beav (1:1.40-16) unstable; urgency=low
* New maintainer (Closes: #227774).
* debian/control:
+ Set policy to 3.6.1.0.
+ Removed caps in the short description.
* debian/copyright:
+ Added the GPL blurb to the copyright file.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 27 Jan 2004 13:22:17 +0100
beav (1:1.40-15) unstable; urgency=low
* Include patch from James A Morrison for Hurd support.
* Update to standards version 3.5.5.
-- Martin Mitchell <martin@debian.org> Sat, 21 Jul 2001 23:37:20 +1000
beav (1:1.40-14) unstable; urgency=low
* Update to standards version 3.5.2. (closes: #91113, #91385)
* Add build depends. (closes: #70223)
-- Martin Mitchell <martin@debian.org> Tue, 27 Mar 2001 00:18:25 +1000
beav (1:1.40-13) unstable; urgency=low
* Update to standards version 2.4.1.
* Recompile for ncurses4.
-- Martin Mitchell <martin@debian.org> Sun, 11 Oct 1998 01:27:50 +1000
beav (1:1.40-12) unstable; urgency=low
* Fix missing separator in debian/rules. (#25766)
-- Martin Mitchell <martin@debian.org> Sat, 29 Aug 1998 18:27:04 +1000
Diffstat (limited to 'editors/beav/Makefile')
-rw-r--r-- | editors/beav/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/editors/beav/Makefile b/editors/beav/Makefile index 7876e22ba6f..3f40a45bac6 100644 --- a/editors/beav/Makefile +++ b/editors/beav/Makefile @@ -1,17 +1,25 @@ -# $NetBSD: Makefile,v 1.11 2005/12/05 20:50:09 rillig Exp $ +# $NetBSD: Makefile,v 1.12 2007/11/25 12:15:52 wiz Exp $ -DISTNAME= beav_1.40-11 -PKGNAME= beav-1.40.11 +DISTNAME= beav_1.40.orig +PKGNAME= beav-1.40.18 CATEGORIES= editors -MASTER_SITES= ${MASTER_SITE_DEBIAN:=hamm/hamm/source/editors/} +MASTER_SITES= ${MASTER_SITE_DEBIAN:=pool/main/b/beav/} + +PATCHFILES= beav_1.40-18.diff.gz +PATCH_SITES= ${MASTER_SITE_DEBIAN:=pool/main/b/beav/} +PATCH_DIST_STRIP= -p1 MAINTAINER= bad@NetBSD.org COMMENT= Binary Editor And Viewer, a full featured binary file editor -WRKSRC= ${WRKDIR}/beav-1.40 +WRKSRC= ${WRKDIR}/beav-140 MAKE_ENV+= SED=${SED:Q} +BUILD_TARGET= beav -pre-patch: - ${MV} ${WRKSRC}/beav.1 ${WRKSRC}/beav.1.in +SUBST_CLASSES+= docpath +SUBST_FILES.docpath= beav.1 +SUBST_STAGE.docpath= post-build +SUBST_SED.docpath= -e 's,/usr/share/doc/,${PREFIX}/share/doc,' +SUBST_MESSAGE.docpath= Fixing path in documentation. .include "../../mk/bsd.pkg.mk" |