diff options
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/dbmaint/Manifest | 1 | ||||
-rw-r--r-- | dev-db/dbmaint/dbmaint-0.3.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-db/dbmaint/Manifest b/dev-db/dbmaint/Manifest index da78a8d..f6586b3 100644 --- a/dev-db/dbmaint/Manifest +++ b/dev-db/dbmaint/Manifest @@ -1 +1,2 @@ EBUILD dbmaint-0.2.ebuild 533 RMD160 7351fff894ae025229084c0a56f73e476d1fea0e SHA1 8473024cebd5a4d3d509e7148177d62510300a4e SHA256 e7f3c00234fd74e354bbbd814c1a462bc79e70435e5018ff669d9246c9399100 +EBUILD dbmaint-0.3.ebuild 533 RMD160 7351fff894ae025229084c0a56f73e476d1fea0e SHA1 8473024cebd5a4d3d509e7148177d62510300a4e SHA256 e7f3c00234fd74e354bbbd814c1a462bc79e70435e5018ff669d9246c9399100 diff --git a/dev-db/dbmaint/dbmaint-0.3.ebuild b/dev-db/dbmaint/dbmaint-0.3.ebuild new file mode 100644 index 0000000..5769322 --- /dev/null +++ b/dev-db/dbmaint/dbmaint-0.3.ebuild @@ -0,0 +1,31 @@ +inherit subversion + +DESCRIPTION="Programable database data mangler" +HOMEPAGE="http://dbmaint.randomdan.homeip.net" + +LICENSE="GPL" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="dev-db/unixODBC + dev-libs/libxml2" +RDEPEND="${DEPEND}" +ESVN_REPO_URI="svn+ssh://svn.random.lan/var/svn/src/tags/${PF}" + +src_compile() { + cd ${S}/libmisc || die + econf || die + emake || die + cd ${S}/libodbcpp || die + econf || die + emake || die + cd ${S}/dbmaint || die + econf || die + emake || die +} + +src_install() { + exeinto /usr/bin + doexe ${S}/dbmaint/dbmaint +} |