pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/misc/cdialog Initial import of cdialog-1.0.20050306.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3d0c4952210d
branches:  trunk
changeset: 498540:3d0c4952210d
user:      xtraeme <xtraeme%pkgsrc.org@localhost>
date:      Thu Aug 25 11:14:25 2005 +0000

description:
Initial import of cdialog-1.0.20050306.

This is an enhanced version of the 'dialog' command, with new widgets,
UTF-8 support and more.

diffstat:

 misc/cdialog/DESCR            |   2 +
 misc/cdialog/Makefile         |  26 +++++++++++++++++++++
 misc/cdialog/PLIST            |   8 ++++++
 misc/cdialog/distinfo         |   6 ++++
 misc/cdialog/patches/patch-aa |  52 +++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 94 insertions(+), 0 deletions(-)

diffs (114 lines):

diff -r 13684d9945f4 -r 3d0c4952210d misc/cdialog/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/cdialog/DESCR        Thu Aug 25 11:14:25 2005 +0000
@@ -0,0 +1,2 @@
+This is an enhanced version of the 'dialog' command, with new widgets,
+UTF-8 support and more.
diff -r 13684d9945f4 -r 3d0c4952210d misc/cdialog/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/cdialog/Makefile     Thu Aug 25 11:14:25 2005 +0000
@@ -0,0 +1,26 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/08/25 11:14:25 xtraeme Exp $
+#
+
+DISTNAME=      dialog
+PKGNAME=       cdialog-1.0.20050306
+CATEGORIES=    misc
+MASTER_SITES=  ftp://invisible-island.net/dialog/
+
+MAINTAINER=    tech-pkg%NetBSD.org@localhost
+HOMEPAGE=      http://invisible-island.net/dialog/
+COMMENT=       Enhanced version of dialog
+
+WRKSRC=                ${WRKDIR}/dialog-1.0-20050306
+USE_LIBTOOL=           yes
+USE_PKGLOCALEDIR=      yes
+GNU_CONFIGURE=         yes
+
+MAKEFILE=      makefile
+
+CONFIGURE_ARGS+=       --enable-nls
+CONFIGURE_ARGS+=       --enable-widec
+CONFIGURE_ARGS+=       --with-libtool
+
+.include "../../devel/gettext-lib/buildlink3.mk"
+.include "../../devel/ncurses/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 13684d9945f4 -r 3d0c4952210d misc/cdialog/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/cdialog/PLIST        Thu Aug 25 11:14:25 2005 +0000
@@ -0,0 +1,8 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/08/25 11:14:25 xtraeme Exp $
+bin/cdialog
+include/dialog.h
+include/dlg_colors.h
+include/dlg_config.h
+lib/libcdialog.la
+man/man1/cdialog.1
+man/man3/cdialog.3
diff -r 13684d9945f4 -r 3d0c4952210d misc/cdialog/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/cdialog/distinfo     Thu Aug 25 11:14:25 2005 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/08/25 11:14:25 xtraeme Exp $
+
+SHA1 (dialog.tar.gz) = c99418b18e0dae9d446b6392bc4804b11d600e3a
+RMD160 (dialog.tar.gz) = a584601ff2fd778456e3a54bd4192f9139c30d29
+Size (dialog.tar.gz) = 300067 bytes
+SHA1 (patch-aa) = ecd724d3e0daa954e05d294847047cd830501998
diff -r 13684d9945f4 -r 3d0c4952210d misc/cdialog/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/cdialog/patches/patch-aa     Thu Aug 25 11:14:25 2005 +0000
@@ -0,0 +1,52 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/08/25 11:14:25 xtraeme Exp $
+
+--- makefile.in.orig   2005-03-06 17:54:14.000000000 +0100
++++ makefile.in        2005-08-15 01:36:15.000000000 +0200
+@@ -86,8 +86,8 @@
+       dlg_colors.h \
+       dlg_config.h
+ 
+-LIB   = @LIB_PREFIX@dialog$a
+-PROG  = dialog$x
++LIB   = @LIB_PREFIX@cdialog$a
++PROG  = cdialog$x
+ ALL   = $(LIB) $(PROG)
+ 
+ BIN_DIRS      = $(bindir) $(MAN1DIR)
+@@ -102,15 +102,15 @@
+ @INTLDIR_MAKE@        @echo "Building GNU gettext library..."
+ @INTLDIR_MAKE@        @cd intl && $(MAKE) @cf_cv_makeflags@
+ 
+-dialog$o \
++cdialog$o \
+ $(OBJECTS) : $(srcdir)/dialog.h dlg_config.h VERSION
+ 
+ $(LIB) : $(LIB_OBJECT)
+       $(LIBTOOL_CREATE) $(LIB) $(LIB_OBJECT)
+       $(RANLIB) $@
+ 
+-dialog$x : $(LIB) dialog$o @INTLDIR_MAKE@ @INTLLIBS@
+-      $(LINK) -o $@ dialog$o -L. -ldialog $(LDFLAGS) $(LIBS)
++cdialog$x : $(LIB) dialog$o @INTLDIR_MAKE@ @INTLLIBS@
++      $(LINK) -o $@ dialog$o -L. -lcdialog $(LDFLAGS) $(LIBS)
+ 
+ clean \
+ distclean \
+@@ -141,7 +141,7 @@
+ 
+ install-strip \
+ install :: $(MAN1DIR)
+-      $(INSTALL_DATA) $(srcdir)/dialog.1 $(MAN1DIR)
++      $(INSTALL_DATA) $(srcdir)/dialog.1 $(MAN1DIR)/cdialog.1
+ 
+ uninstall ::
+       $(RM) $(bindir)/$(PROG)
+@@ -156,7 +156,7 @@
+       @ $(SHELL) $(srcdir)/headers.sh $(INSTALL_DATA) $(includedir) $(srcdir) dlg_colors.h
+       @ $(SHELL) $(srcdir)/headers.sh $(INSTALL_DATA) $(includedir) .         dlg_config.h
+       @ echo "** installing manpage"
+-      $(INSTALL_DATA) $(srcdir)/dialog.3 $(MAN3DIR)
++      $(INSTALL_DATA) $(srcdir)/dialog.3 $(MAN3DIR)/cdialog.3
+ 
+ uninstall-lib :: $(LIB_DIRS)
+       - $(LIBTOOL_UNINSTALL) $(RM) $(libdir)/$(LIB)



Home | Main Index | Thread Index | Old Index