diff options
author | miwi <miwi@FreeBSD.org> | 2008-09-27 07:20:08 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-09-27 07:20:08 +0800 |
commit | 4a92c7e139df0f05dce4c5adba3df46e3268e831 (patch) | |
tree | 698394fa62c5a9568f69ffd2615bfc0d23cb418e /databases | |
parent | cc1f0d0b74ac3d8da0df3033022f64066451e572 (diff) | |
download | freebsd-ports-gnome-4a92c7e139df0f05dce4c5adba3df46e3268e831.tar.gz freebsd-ports-gnome-4a92c7e139df0f05dce4c5adba3df46e3268e831.tar.zst freebsd-ports-gnome-4a92c7e139df0f05dce4c5adba3df46e3268e831.zip |
A script for making backups of InnoDB and MyISAM tables, indexes and .frm files.
WWW: http://www.innodb.com/support/documentation/innodb-hot-backup-manual/#innobackup
PR: ports/127452
Submitted by: Gea-Suan Lin <gslin at gslin.org>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/innobackup/Makefile | 29 | ||||
-rw-r--r-- | databases/innobackup/distinfo | 3 | ||||
-rw-r--r-- | databases/innobackup/pkg-descr | 3 |
4 files changed, 36 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 52106651e838..b02fae9bb925 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -88,6 +88,7 @@ SUBDIR += hamsterdb SUBDIR += hk_classes SUBDIR += hsqldb + SUBDIR += innobackup SUBDIR += innotop SUBDIR += ip4r SUBDIR += ipa_sdb diff --git a/databases/innobackup/Makefile b/databases/innobackup/Makefile new file mode 100644 index 000000000000..702a6601ed2c --- /dev/null +++ b/databases/innobackup/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: innobackup +# Date created: 2008-09-18 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= innobackup +PORTVERSION= 1.4.0 +CATEGORIES= databases +MASTER_SITES= http://www.innodb.com/download/ +DISTFILES= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= gslin@gslin.org +COMMENT= Making backups of InnoDB and MyISAM tables, indexes and .frm files + +NO_BUILD= yes +PLIST_FILES= sbin/innobackup-${PORTVERSION} +USE_MYSQL= yes +USE_PERL5= yes + +do-extract: + ${MKDIR} ${WRKSRC} + ${CP} ${DISTDIR}/${PORTNAME}-${PORTVERSION} ${WRKSRC} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}-${PORTVERSION} ${PREFIX}/sbin + +.include <bsd.port.mk> diff --git a/databases/innobackup/distinfo b/databases/innobackup/distinfo new file mode 100644 index 000000000000..fa770773a568 --- /dev/null +++ b/databases/innobackup/distinfo @@ -0,0 +1,3 @@ +MD5 (innobackup-1.4.0) = 4bdeba7e9964cfe6f18c21df5eef8159 +SHA256 (innobackup-1.4.0) = bc3dba0c15bc2f4b6eafb144123db137e558e26fcebd42d2ace7633b1befa99d +SIZE (innobackup-1.4.0) = 50916 diff --git a/databases/innobackup/pkg-descr b/databases/innobackup/pkg-descr new file mode 100644 index 000000000000..6736a165fd03 --- /dev/null +++ b/databases/innobackup/pkg-descr @@ -0,0 +1,3 @@ +A script for making backups of InnoDB and MyISAM tables, indexes and .frm files. + +WWW: http://www.innodb.com/support/documentation/innodb-hot-backup-manual/#innobackup |