diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2024-01-21 16:37:08 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2024-01-21 17:43:25 +0000 |
commit | a595dde18d0e9ae0f77ea9722c705d3632c75564 (patch) | |
tree | ebb36c8a32369c0138061750ef29bae19f77eba4 /sysutils/magicrescue | |
parent | 1a6012c1ad738a1762e35b2361bc4586fb1cd02d (diff) | |
download | ports-a595dde18d0e9ae0f77ea9722c705d3632c75564.tar.gz ports-a595dde18d0e9ae0f77ea9722c705d3632c75564.zip |
sysutils/magicrescue: Move manpages to share/man
Diffstat (limited to 'sysutils/magicrescue')
-rw-r--r-- | sysutils/magicrescue/Makefile | 15 | ||||
-rw-r--r-- | sysutils/magicrescue/files/patch-Makefile.in | 26 | ||||
-rw-r--r-- | sysutils/magicrescue/pkg-plist | 6 |
3 files changed, 38 insertions, 9 deletions
diff --git a/sysutils/magicrescue/Makefile b/sysutils/magicrescue/Makefile index 43513981e07b..0a7894afc1be 100644 --- a/sysutils/magicrescue/Makefile +++ b/sysutils/magicrescue/Makefile @@ -1,6 +1,7 @@ PORTNAME= magicrescue -PORTVERSION= 1.1.10 DISTVERSIONPREFIX= v +DISTVERSION= 1.1.10 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= ehaupt@FreeBSD.org @@ -11,18 +12,20 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= perl5 shebangfix -USE_PERL5= run - -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} - USE_GITHUB= yes GH_ACCOUNT= jbj +USE_PERL5= run SHEBANG_FILES= magicsort tools/*.pl tools/checkrecipe +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} + MAKE_ENV+= STAGEDIR=${STAGEDIR} +# remove after manprefix migration +GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/magicrescue \ ${STAGEDIR}${PREFIX}/bin/dupemap diff --git a/sysutils/magicrescue/files/patch-Makefile.in b/sysutils/magicrescue/files/patch-Makefile.in new file mode 100644 index 000000000000..80c92e55a3ba --- /dev/null +++ b/sysutils/magicrescue/files/patch-Makefile.in @@ -0,0 +1,26 @@ +--- Makefile.in.orig 2018-11-24 19:21:20 UTC ++++ Makefile.in +@@ -58,12 +58,12 @@ install: all + install: all + mkdir -p $(INSTALLDIR)/share/magicrescue/tools \ + $(INSTALLDIR)/share/magicrescue/recipes \ +- $(INSTALLDIR)/man/man1 \ ++ $(INSTALLDIR)/share/man/man1 \ + $(INSTALLDIR)/bin + + cp magicrescue$(EXE) dupemap$(EXE) magicsort $(INSTALLDIR)/bin/ + cp recipes/* $(INSTALLDIR)/share/magicrescue/recipes/ +- cp $(DOCS) $(INSTALLDIR)/man/man1 ++ cp $(DOCS) $(INSTALLDIR)/share/man/man1 + + for f in tools/*; do \ + if [ -x "$$f" ]; then \ +@@ -77,7 +77,7 @@ uninstall: + rm -f $(INSTALLDIR)/bin/dupemap$(EXE) + rm -f $(INSTALLDIR)/bin/magicsort + for f in $(DOCS); do \ +- rm -f "$(INSTALLDIR)/man/man1/`basename $$f`"; \ ++ rm -f "$(INSTALLDIR)/share/man/man1/`basename $$f`"; \ + done + rm -rf $(INSTALLDIR)/share/magicrescue/tools + rm -rf $(INSTALLDIR)/share/magicrescue/recipes diff --git a/sysutils/magicrescue/pkg-plist b/sysutils/magicrescue/pkg-plist index 47c79878dc86..6711bbfaaa05 100644 --- a/sysutils/magicrescue/pkg-plist +++ b/sysutils/magicrescue/pkg-plist @@ -1,9 +1,9 @@ bin/dupemap bin/magicrescue bin/magicsort -man/man1/dupemap.1.gz -man/man1/magicrescue.1.gz -man/man1/magicsort.1.gz +share/man/man1/dupemap.1.gz +share/man/man1/magicrescue.1.gz +share/man/man1/magicsort.1.gz %%DATADIR%%/recipes/avi %%DATADIR%%/recipes/canon-cr2 %%DATADIR%%/recipes/elf |