diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-17 01:19:03 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-17 01:19:03 +0000 |
commit | b355622ea85428e0693f8ca45120251bd4070f47 (patch) | |
tree | 1b29cb24241f6ce602add19c7377dc82c5f39e6a /converters/gbase/Makefile | |
parent | f05a0391eb7bdde07579f119885fd3424358dc38 (diff) | |
download | pkgsrc-b355622ea85428e0693f8ca45120251bd4070f47.tar.gz |
Import gbase-0.5 as converters/gbase.
GBase is a GTK program designed to convert between the four common bases used in
programming (decimal, hexadecimal, octal and binary). It converts numbers
on-the-fly as they are typed in. It can also convert numbers entered on the
command line. It can correctly handle both signed and unsigned 32-bit integers.
Diffstat (limited to 'converters/gbase/Makefile')
-rw-r--r-- | converters/gbase/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/converters/gbase/Makefile b/converters/gbase/Makefile new file mode 100644 index 00000000000..09d036b8a57 --- /dev/null +++ b/converters/gbase/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2013/04/17 01:19:03 rodent Exp $ + +DISTNAME= gbase-0.5 +CATEGORIES= converters math +MASTER_SITES= http://www.fluxcode.net/ + +MAINTAINER= rodent@NetBSD.org +HOMEPAGE= http://fluxcode.net/projects/gbase-2 +COMMENT= GTK program designed to convert between the four common bases +LICENSE= artistic + +USE_TOOLS+= pkg-config + +INSTALLATION_DIRS+= bin + +BUILD_TARGET= gbase + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gbase ${DESTDIR}${PREFIX}/bin/gbase + +.include "../../x11/gtk2/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |