pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
aha: Remove, imported as textproc/aha
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Tue Jan 12 23:08:48 2016 +0100
Changeset: c59478e5f131f602770f8be8ec6949f61696c329
Removed Files:
aha/DESCR
aha/Makefile
aha/PLIST
aha/distinfo
aha/patches/patch-Makefile
Log Message:
aha: Remove, imported as textproc/aha
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c59478e5f131f602770f8be8ec6949f61696c329
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
aha/DESCR | 5 -----
aha/Makefile | 17 ----------------
aha/PLIST | 3 ---
aha/distinfo | 7 -------
aha/patches/patch-Makefile | 48 ----------------------------------------------
5 files changed, 80 deletions(-)
diffs:
diff --git a/aha/DESCR b/aha/DESCR
deleted file mode 100644
index 8bda7e9..0000000
--- a/aha/DESCR
+++ /dev/null
@@ -1,5 +0,0 @@
-aha - Ansi HTML Adapter
-
-aha takes SGR-colored Input and prints W3C conform HTML-Code.
-
-aha reads the Input from a file or stdin and writes HTML-Code to stdout.
diff --git a/aha/Makefile b/aha/Makefile
deleted file mode 100644
index f05b4b5..0000000
--- a/aha/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# $NetBSD$
-
-DISTNAME= aha-0.4.8
-CATEGORIES= textproc
-MASTER_SITES= ${MASTER_SITE_GITHUB:=theZiz/}
-
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= ${MASTER_SITE_GITHUB:=theZiz/aha/}
-COMMENT= Ansi HTML Adapter
-# It's not specified what version of LGPL
-LICENSE= mpl-1.1 OR gnu-lgpl-v2 OR gnu-lgpl-v2.1 OR gnu-lgpl-v3
-
-MAKE_ENV+= MANDIR=${PKGMANDIR}
-MAKE_ENV+= MANMODE=${MANMODE}
-MAKE_ENV+= BINMODE=${BINMODE}
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/aha/PLIST b/aha/PLIST
deleted file mode 100644
index dc40d24..0000000
--- a/aha/PLIST
+++ /dev/null
@@ -1,3 +0,0 @@
-@comment $NetBSD$
-bin/aha
-man/man1/aha.1
diff --git a/aha/distinfo b/aha/distinfo
deleted file mode 100644
index a2ad338..0000000
--- a/aha/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD$
-
-SHA1 (aha-0.4.8.tar.gz) = 45d91e1cda8663e8bf0c5fa8b94e4d2290aa9895
-RMD160 (aha-0.4.8.tar.gz) = 423311d1dd79ada23c4a67daae1a064afeb76ca4
-SHA512 (aha-0.4.8.tar.gz) = 8d66ee7ec6d59873c1f0bedbc4deecd0c7b84c18069d2181d7b0563d9600821455c62c37c0af1774c7190ce08b14ec52f10bdf2c15a97fd29a2b6b095d5924fa
-Size (aha-0.4.8.tar.gz) = 6744 bytes
-SHA1 (patch-Makefile) = 286dff9d54aaf82c397d3e979e0f1b04fc29093d
diff --git a/aha/patches/patch-Makefile b/aha/patches/patch-Makefile
deleted file mode 100644
index ac464f7..0000000
--- a/aha/patches/patch-Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-$NetBSD$
-
-Sent upstream: https://github.com/theZiz/aha/pull/15
-
-Allow to overwrite MANDIR, it's OS specific and configurable in pkgsrc. It's
-usually share/man (GNU) or man (BSD).
-
-Files must be installed with specific file mode. Previously man-page was
-installed with executable bit.
-
-BIN:= and MAN:= didn't work well with overwrittable MANDIR, go for canonical
-way of using these paths.
-
---- Makefile.orig 2015-01-24 12:12:35.000000000 +0000
-+++ Makefile
-@@ -1,22 +1,22 @@
- .PHONY: all clean install
-
--ifndef PREFIX
-- PREFIX=/usr/local
--endif
-+PREFIX?=/usr/local
-
--BIN:=$(DESTDIR)$(PREFIX)/bin
--MAN:=$(DESTDIR)$(PREFIX)/man/man1
-+MANDIR?=man
-+
-+BINMODE?=0755
-+MANMODE?=644
-
- all: aha
-
- aha: aha.c
-- gcc -std=c99 $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) aha.c -o aha
-+ $(CC) -std=c99 $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) aha.c -o aha
-
- clean:
- rm -f aha
-
- install: aha
-- install -d $(BIN)
-- install aha $(BIN)
-- install -d $(MAN)
-- install aha.1 $(MAN)
-+ install -d $(DESTDIR)$(PREFIX)/bin
-+ install -m ${BINMODE} aha $(DESTDIR)$(PREFIX)/bin
-+ install -d $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
-+ install -m ${MANMODE} aha.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
Home |
Main Index |
Thread Index |
Old Index