ctags: deleted unmaintained port

This commit is contained in:
Tim Biermann 2021-01-31 18:00:52 +00:00
parent 5796f8cad0
commit fa4a500d53
4 changed files with 0 additions and 54 deletions

View File

@ -1,9 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ctags
lrwxrwxrwx root/root usr/bin/etags -> ctags
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/ctags.1.gz
lrwxrwxrwx root/root usr/share/man/man1/etags.1.gz -> ctags.1.gz

View File

@ -1,6 +0,0 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/SLyAPKSFGU4ybkITsCV/J1KzSZvycJKsZLHJLylQaYgBcFKIrRdeO7dAg15aH9uN1yLB1k2WF+FPpRucAAiAg4=
SHA256 (Pkgfile) = b2f8af751dbfc775a3db3cbd4d108ed3a7efedbd23726e8a86ea92d63b381f61
SHA256 (.footprint) = 49185075b2fcad39e85b06c8cb2d5fdc1d09a2888e360f5d1cacf6302567870a
SHA256 (ctags-5.8.tar.gz) = 0e44b45dcabe969e0bbbb11e30c246f81abe5d32012db37395eb57d66e9e99c7
SHA256 (ctags.diff) = 9fc9ecc9629e84338b6017b317938a78160c127839709d90805e03111e8dda89

View File

@ -1,17 +0,0 @@
# Description: A multilanguage implementation of Ctags, for effective editing of source code.
# URL: http://ctags.sourceforge.net
# Maintainer: Thomas Penteker, tek at serverop dot de
name=ctags
version=5.8
release=1
source=(http://distfiles.serverop.de/$name-$version.tar.gz \
$name.diff)
build() {
cd $name-$version
patch -p0 -i $SRC/$name.diff
./configure --prefix=/usr --enable-etags
make
make prefix=$PKG/usr install
}

View File

@ -1,22 +0,0 @@
Index: Makefile.in
===================================================================
--- Makefile.in (revision 663)
+++ Makefile.in (working copy)
@@ -140,7 +140,7 @@
$(DEST_CTAGS): $(CTAGS_EXEC) $(bindir) FORCE
$(INSTALL_PROG) $(CTAGS_EXEC) $@ && chmod 755 $@
-$(DEST_ETAGS):
+$(DEST_ETAGS): $(DEST_CTAGS)
- if [ -x $(DEST_CTAGS) ]; then \
cd $(bindir) && $(SLINK) $(CTAGS_EXEC) $(ETAGS_EXEC); \
fi
@@ -155,7 +155,7 @@
$(DEST_CMAN): $(man1dir) $(MANPAGE) FORCE
- $(INSTALL_DATA) $(srcdir)/$(MANPAGE) $@ && chmod 644 $@
-$(DEST_EMAN):
+$(DEST_EMAN): $(DEST_CMAN)
- if [ -f $(DEST_CMAN) ]; then \
cd $(man1dir) && $(SLINK) $(CMAN) $(EMAN); \
fi