diff --git a/ClientPasswordManager/package/Makefile.am b/ClientPasswordManager/package/Makefile.am deleted file mode 100644 index bf6f36f8..00000000 --- a/ClientPasswordManager/package/Makefile.am +++ /dev/null @@ -1,33 +0,0 @@ -####################################################################### -# -# Copyright (C) 2004 Novell, Inc. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this program; if not, write to the Free -# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -# Author: Juan Carlos Luciani -# -####################################################################### - -SUBDIRS = $(TARGET_OS) - -DIST_SUBDIRS = linux windows - -.PHONY: package package-clean package-install package-uninstall -package package-clean package-install package-uninstall: - $(MAKE) -C $(TARGET_OS) $@ - -maintainer-clean-local: - rm -f Makefile.in - diff --git a/ClientPasswordManager/package/linux/Makefile.am b/ClientPasswordManager/package/linux/Makefile.am deleted file mode 100644 index b06a5b93..00000000 --- a/ClientPasswordManager/package/linux/Makefile.am +++ /dev/null @@ -1,65 +0,0 @@ -####################################################################### -# -# Copyright (C) 2004 Novell, Inc. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this program; if not, write to the Free -# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -# Author: Juan Carlos Luciani -# -####################################################################### - -RPM_FILE = $(PACKAGE)-$(VERSION)-$(RELEASE).$(target_cpu).rpm -SRPM_FILE = $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: package package-clean package-install package-uninstall - -#all: $(RPM_FILE) - -package: $(RPM_FILE) - -all clean: - -$(RPM_FILE): - cd $(top_srcdir); make dist - rm -rf RPM - mkdir RPM - echo %_topdir `pwd`/RPM > $(HOME)/.rpmmacros - mkdir -p RPM/BUILD - mkdir -p RPM/RPMS - mkdir -p RPM/SOURCES - mkdir -p RPM/SPECS - mkdir -p RPM/SRPMS - cp clientpasswordmanager.spec RPM/SPECS - cp $(top_srcdir)/$(PACKAGE)-$(VERSION).tar.gz RPM/SOURCES - mv $(top_srcdir)/$(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)-$(RELEASE).tar.gz - rpmbuild -ba -v -vv --target=$(target_triplet) RPM/SPECS/clientpasswordmanager.spec - cp RPM/RPMS/*/$(RPM_FILE) . - cp RPM/SRPMS/$(SRPM_FILE) . - -package-install: package - su -c "rpm -Uvh $(RPM_FILE)" - -package-uninstall: - su -c "rpm -e $(PACKAGE)" - -package-clean clean-local: - rm -rf *.rpm RPM *.gz - -distclean-local: package-clean - rm -f Makefile clientpasswordmanager.spec - -maintainer-clean-local: - rm -f Makefile.in - diff --git a/ClientPasswordManager/package/linux/clientpasswordmanager.spec.in b/ClientPasswordManager/package/linux/clientpasswordmanager.spec.in deleted file mode 100644 index 8906a8ab..00000000 --- a/ClientPasswordManager/package/linux/clientpasswordmanager.spec.in +++ /dev/null @@ -1,95 +0,0 @@ -####################################################################### -# -# Copyright (C) 2004 Novell, Inc. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this program; if not, write to the Free -# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -# Author: Juan Carlos Luciani -# -####################################################################### - -# SuSE Specific autobuild tags -# neededforbuild mono mono-devel pkgconfig glib2 glib2-devel libicu26 - -%define prefix /opt/novell/clientpasswordmanager - -Summary: ClientPasswordManager -Name: @PACKAGE@ -Version: @VERSION@ -Release: @RELEASE@ -Copyright: GPL -Group: Applications/Productivity -Source: %{name}-%{version}.tar.gz -URL: http://forge.novell.com/modules/xfmod/project/?isecure -#Distribution : -Vendor: -Packager: -BuildRoot: %{_tmppath}/%{name}-%{version} - -Requires: mono >= 0.31 -Obsoletes: %{name} <= %{version} -#============================================================================= -%Description -ClientPasswordManager provides an infrastructure that allows trusted -applications to share passwords to help provide a Single Sign-On experience -to the user. - -#============================================================================= -%ChangeLog - - -#============================================================================= -%Prep -%setup -n %{name}-%{version} - - -#============================================================================= -%Build -./configure --prefix=%{prefix} -make - -#============================================================================= -%Install -%{__rm} -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install - -#============================================================================= -%Clean -%{__rm} -rf $RPM_BUILD_ROOT - -#============================================================================= -%Post -cd /opt/novell/clientpasswordmanager/lib -gacutil -i Novell.Security.ClientPasswordManager.NetCredential.dll -gacutil -i Novell.Security.ClientPasswordManager.UsernameDialog.dll -gacutil -i Novell.Security.ClientPasswordManager.PasswordDialog.dll -gacutil -i Novell.Security.Utilities.dll -exit 0 - -#============================================================================= -%Preun -gacutil -u Novell.Security.ClientPasswordManager.NetCredential -gacutil -u Novell.Security.ClientPasswordManager.UsernameDialog -gacutil -u Novell.Security.ClientPasswordManager.PasswordDialog -gacutil -u Novell.Security.Utilities -exit 0 - -#============================================================================= -%Files -%defattr(-,root,root) -%{prefix}/* -#%{prefix}/lib/* -#%{prefix}/share/* - diff --git a/ClientPasswordManager/package/windows/Makefile.am b/ClientPasswordManager/package/windows/Makefile.am deleted file mode 100644 index e93c496f..00000000 --- a/ClientPasswordManager/package/windows/Makefile.am +++ /dev/null @@ -1,32 +0,0 @@ -####################################################################### -# -# Copyright (C) 2004 Novell, Inc. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this program; if not, write to the Free -# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -# Author: Juan Carlos Luciani -# -####################################################################### - -SUBDIRS = clientpasswordmanager-msm - -.PHONY: package-clean package-install package-uninstall - -package package-clean package-install package-uninstall: - $(MAKE) -C clientpasswordmanager-msm $@ - -maintainer-clean-local: - rm -f Makefile.in - diff --git a/ClientPasswordManager/package/windows/clientpasswordmanager-msm/Makefile.am b/ClientPasswordManager/package/windows/clientpasswordmanager-msm/Makefile.am deleted file mode 100644 index 17bf382b..00000000 --- a/ClientPasswordManager/package/windows/clientpasswordmanager-msm/Makefile.am +++ /dev/null @@ -1,61 +0,0 @@ -####################################################################### -# -# Copyright (C) 2004 Novell, Inc. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this program; if not, write to the Free -# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# -# Author: Juan Carlos Luciani -# -####################################################################### - -MSM_FILE = $(PACKAGE)-$(VERSION)-$(RELEASE).msm -MSM_LOG_FILE = devenv-clientpasswordmanager-msm.log - -.PHONY: package package-clean package-install package-uninstall c-sharp-net-credential c-sharp-password-dialog c-sharp-username-dialog c-sharp-utilities devenv - -#all clean: - -package: $(MSM_FILE) - -devenv: - @if ! test -x "$(VSINSTALLDIR)/devenv.exe"; then echo "Error: Microsoft Visual Studio .NET is currently required to build MSI and MSM packages"; exit 1; fi - -$(MSM_FILE): devenv - @rm -f $(MSM_LOG_FILE) $@ - @CMD='"$(VSINSTALLDIR)/devenv.exe" ../../../ClientPasswordManager.sln /build $(DEVENV_CONFIGURATION) /project clientpasswordmanager-msm /out $(MSM_LOG_FILE)'; \ - echo $$CMD; \ - if eval $$CMD; then \ - ls -l $(DEVENV_CONFIGURATION)/clientpasswordmanager-msm.msm; \ - else \ - grep -a "ERROR:" $(MSM_LOG_FILE); \ - fi - -securesink: - make -C ../.. all - -package-clean clean-local: - rm -rf Release/* Release Debug/* Debug*/Release */Debug *.log *.suo - -clean: - rm -rf Release/* Release Debug/* Debug */Release */Debug *.log *.suo - -distclean-local: package-clean - rm -f Makefile clientpasswordmanager.msm - -maintainer-clean-local: - rm -f Makefile.in - - - diff --git a/ClientPasswordManager/package/windows/clientpasswordmanager-msm/clientpasswordmanager-msm.vdproj b/ClientPasswordManager/package/windows/clientpasswordmanager-msm/clientpasswordmanager-msm.vdproj deleted file mode 100644 index f76b5c6c..00000000 --- a/ClientPasswordManager/package/windows/clientpasswordmanager-msm/clientpasswordmanager-msm.vdproj +++ /dev/null @@ -1,326 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:701" -"ProjectType" = "8:{DD7A5B58-C2F9-40FF-B2EF-0773356FB978}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:clientpasswordmanager-msm" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_3AD7204448FD4A0FB065CE3B19B85187" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CA7DFE20AFF49E1A5059CAA12A6F262" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_763071E9529E47298E0D483C70C9DD2C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C87D109CB52E451B8D4C9C425B9F408F" - "OwnerKey" = "8:_763071E9529E47298E0D483C70C9DD2C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C87D109CB52E451B8D4C9C425B9F408F" - "OwnerKey" = "8:_D54A8D63A6224AABA81E04F4DB6AD917" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C87D109CB52E451B8D4C9C425B9F408F" - "OwnerKey" = "8:_3CA7DFE20AFF49E1A5059CAA12A6F262" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C87D109CB52E451B8D4C9C425B9F408F" - "OwnerKey" = "8:_3AD7204448FD4A0FB065CE3B19B85187" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D54A8D63A6224AABA81E04F4DB6AD917" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\clientpasswordmanager-msm.msm" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:1" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\clientpasswordmanager-msm.msm" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:1" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "File" - { - } - "FileType" - { - } - "Folder" - { - "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_6E6B01F2741A44CEAD98C1596C6D5ECF" - { - "Name" = "8:#1910" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:CommonFilesFolder" - "Folders" - { - } - } - "{29CD8198-A6F0-4B93-8B90-AC03CFEAD328}:_99CD6F04CF034FEC8E2E893187E81441" - { - "DefaultLocation" = "8:[TARGETDIR]" - "DisplayName" = "8:Module Retargetable Folder" - "Description" = "8:" - "Name" = "8:Module Retargetable Folder" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:TRUE" - "Property" = "8:NEWRETARGETABLEPROPERTY1" - "Folders" - { - } - } - } - "Sequences" - { - } - "MergeModule" - { - "{35A69C6E-5BA4-440D-803D-762B59A45393}:_C87D109CB52E451B8D4C9C425B9F408F" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:dotnetfxredist_x86.msm" - "LanguageId" = "3:1033" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "Module" - { - "ModuleSignature" = "8:MergeModule.6E7C68BEF7C242F99CC96098C0C93419" - "Version" = "8:1.0.0.0" - "Title" = "8:clientpasswordmanager-msm" - "Subject" = "8:" - "Author" = "8:Novell, Inc." - "Keywords" = "8:" - "Comments" = "8:" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - } - "ProjectOutput" - { - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_3AD7204448FD4A0FB065CE3B19B85187" - { - "SourcePath" = "8:..\\..\\..\\c-sharp-net-credential\\obj\\Debug\\Novell.Security.ClientPasswordManager.NetCredential.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_99CD6F04CF034FEC8E2E893187E81441" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{D7D0F5D8-0F45-4DCA-818B-8E71168A2CA3}" - "ShowKeyOutput" = "11:FALSE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_3CA7DFE20AFF49E1A5059CAA12A6F262" - { - "SourcePath" = "8:..\\..\\..\\c-sharp-username-dialog\\obj\\Debug\\Novell.Security.ClientPasswordManager.UsernameDialog.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_99CD6F04CF034FEC8E2E893187E81441" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{AFE3BA84-436C-4DD1-BA01-3B8C6B9D125C}" - "ShowKeyOutput" = "11:FALSE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_763071E9529E47298E0D483C70C9DD2C" - { - "SourcePath" = "8:..\\..\\..\\c-sharp-password-dialog\\obj\\Debug\\Novell.Security.ClientPasswordManager.PasswordDialog.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_99CD6F04CF034FEC8E2E893187E81441" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{5A211C70-3AEB-4305-8CB6-42757D01DC22}" - "ShowKeyOutput" = "11:FALSE" - "ExcludeFilters" - { - } - } - "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_D54A8D63A6224AABA81E04F4DB6AD917" - { - "SourcePath" = "8:..\\..\\..\\c-sharp-utilities\\obj\\Debug\\Novell.Security.Utilities.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_99CD6F04CF034FEC8E2E893187E81441" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{BBAD68F3-93C6-448F-8F79-F8CAEA3200C5}" - "ShowKeyOutput" = "11:FALSE" - "ExcludeFilters" - { - } - } - } - "Registry" - { - "HKLM" - { - "Keys" - { - } - } - "HKCU" - { - "Keys" - { - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Shortcut" - { - } - } -}